A South Korean court has sentenced a celebrity golfer and the former CEO of Bithumb, a major crypto exchange, to prison for their roles in a bribery and market manipulation scheme. Lee Sang-jun, the former CEO of Bithumb, was sentenced to two years in prison, while Ahn Sung-hyun, a well-known golfer married to actress Song Yu-ri, received a four-and-a-half-year sentence.
Altcoin Price Manipulation and Bribes
The trial, held on December 26, revealed surprising details about how these individuals attempted to rig the cryptocurrency market.
Prosecutors revealed that Lee, in exchange for large bribes, agreed to list a specific altcoin on Bithumb’s platform. In return, Lee received around 3 billion Korean won (roughly $2 million) in cash, along with luxury watches, high-end bags, and even exclusive restaurant memberships.
The bribes were given by Kang Jong-hyun, a reclusive businessman and close associate of both Lee and Ahn. His goal was to artificially boost the value of a low-cap altcoin by listing it on Bithumb, causing its price to rise quickly.
Golfer Ahn’s Role in the Scam
Ahn Sung-hyun played a key role in the plot as well. Businessman Kang provided Ahn with a large sum of money to bribe Lee into listing the altcoin. However, Ahn didn’t stop there. Prosecutors discovered that Ahn kept some of the money for himself and used it to buy stocks.
In total, Ahn pocketed 2 billion Korean won (about $1.5 million), which he spent to make personal investments.
The court was harsh on Ahn, describing them as “heinous” and accusing him of using stolen funds to further his financial interests. Ahn’s ties to both Lee and Kang played a central role in the crime, revealing a dangerous web of corruption.
Kang, the businessman behind the bribes, was sentenced to one and a half years in prison. While his role in the scandal is clear, there is still ongoing investigation into his possible secret ownership of Bithumb. His efforts to manipulate altcoin prices on the exchange were key to this bribery scheme.
The case highlights the darker side of the crypto world, where unregulated markets can be easily manipulated for personal profit.
function subscribed_popupmodal(template_id) {
var subcribemodal = 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
if (Array.isArray(storeallcategory)) {
// Collect all `news_cp_category_row_id` values and remove duplicates
var allCategoryIds = storeallcategory.map(function(item) {
return String(item.news_cp_category_row_id); // Convert IDs to strings
});
var uniqueCategoryIds = Array.from(new Set(allCategoryIds)); // Get unique IDs
// Convert templateId to a string for comparison
var templateIdStr = String(templateId);
// Check if the templateId is NOT found in the unique category IDs
if (!uniqueCategoryIds.includes(templateIdStr)) {
var idNotMatchTounsubscribe = document.getElementById(‘unsubscribe_’ + templateIdStr);
var idNotMatchTosubscribe = document.getElementById(‘subscribe_’ + templateIdStr);
// Check if elements exist before applying display changes
if (idNotMatchTounsubscribe) {
idNotMatchTounsubscribe.style.display = “none”;
}
if (idNotMatchTosubscribe) {
idNotMatchTosubscribe.style.display = “none”;
}
}
} else {
console.log(“storeallcategory is not an array.”);
}
},
error: function(xhr, status, error) {
console.error(“AJAX request failed:”, status, error);
}
});
// 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();
}
}
});