WazirX, the popular crypto exchange that faced a major hack in July 2024, has released a new update regarding its fund recovery efforts. Since the hack, which resulted in the loss of around $235 million, the exchange has been under pressure from its users to recover the stolen funds. Despite sharing several updates and plans, the actual recovery process has been slow, leaving investors frustrated and anxious.
A Step Towards Transparency
As part of its restructuring efforts, WazirX has now released a preliminary creditor list along with a balance snapshot as of July 18, 2024. This move aims to ensure transparency by allowing creditors to verify their claim amounts and current balances. Each creditor can check their claims using a unique identifier (UUID), which keeps their financial information private and secure. To make things easier, the platform also offers a “Find My Balance” option, and if someone wants to inspect another creditor’s claim, they can submit a request for that.
The creditor list is arranged based on the claim amounts, from highest to lowest. Plus, the balance snapshot includes details of token balances and deposits made after the hack. WazirX insists that despite the criticism, its restructuring plan is designed to be fair and transparent for all affected users.
Recovery Timeline and Options for Creditors
Moreover, at present the creditors are waiting for their hard earned funds. Recently, WazirX has proposed a restructuring plan focused on fund recovery. The Singapore High Court has approved this plan, but there’s a catch: it aims to recover only 75% to 80% of the lost funds. This means that creditors might not get the full amount they lost.
WazirX has given its creditors two options. If the restructuring plan is approved by the majority of creditors, they could start receiving their recovered funds by April 2025. However, if the plan is rejected, the recovery process could stretch over the next five years, making it a long and uncertain wait.
While this decision is tough for those who have already suffered losses, WazirX’s effort to regain trust through this restructuring plan is noteworthy. It’s one of the first attempts by a crypto exchange to recover hacked funds in such a structured way, setting a new precedent in the crypto world.
function subscribed_popupmodal(template_id) {
var templateId = ‘6’;
getAllSubscriberCategoryList([templateId]);
var subcribemodal = window.parent.document.getElementById(‘subscribe-modal-design’);
if (subcribemodal) {
var modalContent = `
Never Miss a Beat in the Crypto World!
Stay informed and gain the edge you need to navigate the crypto world. Select your subscription now
if (storeCheckedId.length === 0) {
var unsubcribedPopUpmodal =
`
You’ve Unsubscribed Successfully
We’re sorry to see you go! Your subscription has been canceled. If you change your mind, you can re-subscribe anytime. Thank you for being part of our community!
Thank you for subscribing to our crypto and blockchain newsletter! You’ll now receive the latest news, insights, and updates straight to your inbox. Welcome to our community!
`;
let selectedSubscriptionsArray = selectedSubscriptionsString.split(‘,’);
let subscribedCategories = selectedSubscriptionsArray.map(subscription => subscription.split(‘_’)[0]);
let subscribedCategoriesString = subscribedCategories.join(‘, ‘);
subscribedmodal.innerHTML = subscribedPopupModal;
if (document.getElementById(‘selectidname’)) {
document.getElementById(‘selectidname’).textContent = subscribedCategoriesString;
}
function closeModal(template_id) {
var modalId = template_id;
var modal = document.querySelector(‘#’ + modalId); // Using querySelector to find the modal
// Function to get cookies
function getCookie(name) {
let value = “; ” + document.cookie;
let parts = value.split(“; ” + name + “=”);
if (parts.length == 2) return parts.pop().split(“;”).shift();
}
// Get user token from cookies
const userToken = getCookie(‘user_token’);
if (subscribewithoutData === ‘true’ && userToken) {
// Call the modal function with the category ID
subscribed_popupmodal(subscribe_clicked_cat_id);
// Remove the flag and category ID from localStorage
localStorage.removeItem(‘subscribe_without_Login’);
localStorage.removeItem(‘subscribe_clicked_id’);
}
});
var listItems = document.querySelectorAll(‘.subscription-options li’);
if (listItems.length === 0) return;
var anyActive = false;
listItems.forEach(function(item) {
var checkbox = item.querySelector(‘input[type=”checkbox”]’);
if (checkbox) {
if (checkbox.checked) {
item.classList.add(‘active’);
anyActive = true; // Set anyActive to true
} else {
item.classList.remove(‘active’); // Remove ‘active’ class if checkbox is unchecked
}
}
});
}
function updateButtonText(anyActive) {
var subscribeButtonSpan = document.querySelector(‘.subscribe-submit .changeBtnText’);
if (subscribeButtonSpan) {
if (anyActive) {
subscribeButtonSpan.textContent=”Subscribe Now”;
} else {
subscribeButtonSpan.textContent=”Unsubscribe”;
}
}
}
function updateSubscriptionButton() {
var listItems = document.querySelectorAll(‘.subscription-options li’);
if (listItems.length === 0) return;
var anyActive = false;
listItems.forEach(function(item) {
var checkbox = item.querySelector(‘input[type=”checkbox”]’);
if (checkbox) {
if (checkbox.checked) {
item.classList.add(‘active’);
anyActive = true; // Set anyActive to true
} else {
item.classList.remove(‘active’); // Remove ‘active’ class if checkbox is unchecked
}
}
});
// Update the button text based on whether any list item has the ‘active’ class
updateButtonText(anyActive);
}
document.addEventListener(‘click’, function(event) {
var clickedItem = event.target.closest(‘.subscription-options li’);
if (clickedItem) {
var checkbox = clickedItem.querySelector(‘input[type=”checkbox”]’);
if (checkbox) {
checkbox.checked = !checkbox.checked;
updateSubscriptionButton();
}
}
});