The Withdraw is a component of the ZexPorta module and responsible for ensuring that all user withdrawal requests are securely processed and finalised. It leverages the decentralized architecture to maintain transparency and integrity throughout the withdrawal process. Below is a detailed breakdown of its services and workflow:
The Withdraw Component consists of the following key services:
Database
Functionality: Tracks and updates the status of withdrawal transactions. Withdrawal requests progress through states such as pending and successful.
Technology: Uses a MongoDB database for efficient data management.
Observer
Functionality: Monitors and records withdrawal requests submitted by users via the ZexCora. Inserts new withdrawal requests into the database with a pending status for further processing.
Signature Aggregator (SA)
Functionality:
Sends pending withdrawal requests to Validators for verification.
Aggregates the signature shares issued by Validators.
Issues an ECDSA signature to enhance the security of the process.
Technology: Implements the Signature Aggregator component of the PyFrost library.
The withdrawal transaction process follows the sequence outlined in the diagram. Each step ensures that user requests are securely validated and completed efficiently.
Read Withdrawal Requests
The Observer retrieves withdrawal requests submitted by users through the ZexCora.
Insert Withdrawal Request into the Database
The Observer records the withdrawal request in the database with a pending status.
Fetch Pending Withdrawal Requests
The SA retrieves pending withdrawal requests from the database for validation and processing.
Send Withdrawal Nonce to Validators for Verification
The SA sends the nonce (i.e. a unique identifier for withdrawal on each chain) associated with the withdrawal request to Validators for verification.
Validators Retrieve Withdrawal Data
Validators independently fetch withdrawal data using withdrawal nonce from the ZexCora.
Validators Verify and Send Signature Shares
Validators validate the data of the withdrawal transaction and issue partial signatures.
These signature shares are sent back to the SA.
Send Withdrawal and Signatures to the Vault
The SA aggregates the signature shares and issues an ECDSA signature itself to enhanced security.
The aggregated data, including the signatures, is sent to the Vault interface.
Update Withdrawal Status to Successful
The SA updates the transaction status in the database to successful.
The Vault interface completes the withdrawal process by transferring tokens from the Vault to the user’s address.