SEC继续上诉XRP裁决,新任SEC主席保罗·阿特金斯引发了更多和解和更清晰的加密货币指导的希望。
如果SEC放弃上诉或朝着有利的和解方向迈进,XRP价格可能会大幅上涨,这表明了更友好的加密货币立场。在8月份,Ripple被罚款1.25亿美元,看起来诉讼已经结束。然而,SEC继续上诉这一决定。10月份,SEC正式上诉了之前关于XRP的裁决。SEC对法官的决定不满意,将其提交给上诉法院。
现在,保罗·阿特金斯将取代加里·根斯勒成为新的SEC主席。阿特金斯一直批评该机构的严厉做法,特别是他使用的“执行监管”,这一点引发了争议。许多人预计这种策略将在阿特金斯的领导下结束。
有人猜测SEC可能会开始减少甚至放弃一些当前的诉讼,特别是那些被视为无聊或不涉及欺诈的诉讼。然而,在接受Thinking Crypto采访时,DeFi教育基金的阿曼达·图米内利表示,虽然完全放弃诉讼可能不会立即发生,但做法上的转变是可能的。
她还希望这些和解可以带来更清晰的行业指导方针,可能推动SEC进行更多的规则制定或提供更明确的注册路径。这样,即使不放弃诉讼,行业也可以从案例中学习,更好地理解SEC的期望。
总结:
如果达成和解或撤销诉讼,XRP的价格可能会上涨,因为这将改善市场情绪。如果SEC放弃上诉,可能意味着对Ripple和加密货币行业更友好的立场。这对新老XRP持有者来说都是一个重要的案例。简而言之,在新领导下,SEC可能会软化其激进立场,导致更多和解和更清晰的监管,尽管不一定完全放弃诉讼。coinfinite.org/wp-content/uploads/2024/07/27160000/system-regular-success.gif” alt=”subscribed icon” width=”90″ class=”subscriber-image”/>
You’ve Subscribed Successfully
You will now receive daily, weekly, and monthly newsletters for the selected categories. Thank you for subscribing!
`;
subscribedmodal.innerHTML = subscribedPopupModal;
document.querySelector(‘#subscribe-modal-design .modal’).style.display = ‘none’;
subscribedmodal.style.display = ‘block’;
subscribedmodal.classList.remove(‘hide’);
subscribedmodal.classList.add(‘show’);
document.getElementById(‘subscribe_’ + categoryid).style.display = ‘none’;
document.getElementById(‘unsubscribe_’ + categoryid).style.display = ‘block’;
var showDownloadReport = document.getElementById(‘download_report’);
if (showDownloadReport) {
showDownloadReport.style.display = ‘block’;
}
}
} catch (error) {
console.error(‘Error:’, error);
}
},
error: function(xhr, status, error) {
console.error(‘Error:’, error);
}
});
}
function closeunsubscribemodal() {
document.querySelector(‘.unsubscribed-popup-modal .modal’).style.display = ‘none’;
document.querySelector(‘.unsubscribed-popup-modal .modal’).classList.remove(‘show’);
document.querySelector(‘.unsubscribed-popup-modal .modal’).classList.add(‘hide’);
}
function closesubscribedmodal() {
document.querySelector(‘.subscribed-popup-modal .modal’).style.display = ‘none’;
document.querySelector(‘.subscribed-popup-modal .modal’).classList.remove(‘show’);
document.querySelector(‘.subscribed-popup-modal .modal’).classList.add(‘hide’);
}
function downloadReport() {
var categoryData = {
‘subscribed_categories’: Array.from(new Set(listOfSubscribed))
};
var requestSubscriberData = {
action: ‘handle_dynamic_api_request_with_headers’,
security: ‘a74887a30a’,
endpoint: ‘/app/email_newsletter/download_report’,
token: ”,
data: categoryData
};
jQuery.ajax({
url: ‘https://coinfinite.org/wp-admin/admin-ajax.php’,
type: ‘POST’,
data: requestSubscriberData,
beforeSend: function(xhr) {
xhr.setRequestHeader(‘X-Requested-With’, ‘XMLHttpRequest’);
},
success: function(response) {
try {
response = response.data;
var downloadURL = response.download_url;
var link = document.createElement(‘a’);
link.href = downloadURL;
link.download = ‘report.csv’;
link.click();
} catch (error) {
console.error(‘Error:’, error);
}
},
error: function(xhr, status, error) {
console.error(‘Error:’, error);
}
});
}
感谢您订阅!
感谢您订阅我们的加密货币和区块链通讯!您将收到最新的新闻、见解和更新,直接发送至您的邮箱。欢迎加入我们的社区!
`;
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;
}
document.querySelector(‘#subscribe-modal-design .modal’).style.display = ‘none’;
subscribedmodal.style.display = ‘block’;
subscribedmodal.classList.remove(‘hide’);
subscribedmodal.classList.add(‘show’);
document.getElementById(‘subscribe_’ + categoryid).style.display = ‘none’;
document.getElementById(‘unsubscribe_’ + categoryid).style.display = ‘block’;
var showDownloadReport = document.getElementById(‘download_report’);
if (showDownloadReport) {
showDownloadReport.style.display = ‘block’;
}
}
} catch (e) {
console.error(‘解析响应时出错:’, e);
}
},
});
}
function closeModal(template_id) {
var modalId = template_id;
var modal = document.querySelector(‘#’ + modalId); // 使用querySelector查找模态框
if (modal) {
modal.classList.add(‘hide’);
modal.classList.remove(‘show’);
setTimeout(function() {
modal.style.display = ‘none’;
}, 500);
} else {
console.warn(‘找不到模态框:’, modalId);
}
}
function closeunsubscribemodal() {
var unsubscribemodal = document.querySelector(‘.unsubscribed-popup-modal .modal’);
if (unsubscribemodal) {
unsubscribemodal.classList.add(‘hide’);
unsubscribemodal.classList.remove(‘show’);
}
setTimeout(function() {
unsubscribemodal.style.display = ‘none’;
}, 500);
}
function closesubscribemodal() {
var subscribedmodal = document.querySelector(‘.subscribed-popup-modal .modal’);
setTimeout(function() {
subscribedmodal.style.display = ‘none’;
}, 500);
if (subscribedmodal) {
subscribedmodal.classList.add(‘hide’);
subscribedmodal.classList.remove(‘show’);
}
}
function withoutLoginClicked(withoutlogin_id) {
localStorage.setItem(‘subscribe_without_Login’, ‘true’);
localStorage.setItem(‘subscribe_clicked_id’, withoutlogin_id);
}
document.addEventListener(‘DOMContentLoaded’, function() {
var templateId = ‘6’;
getAllSubscriberCategoryList([templateId]);
jQuery.ajax({
url: ‘https://coinfinite.org/wp-admin/admin-ajax.php’,
type: ‘GET’,
data: {
action: ‘subscribe_api_ajax_request’,
apiurl: ‘/app/email_newsletter/list’,
},
success: function(response) {
var resultonload = JSON.parse(response.message);
var storeallcategory = resultonload.message;
if (Array.isArray(storeallcategory)) {
// 收集所有的`news_cp_category_row_id`值并去除重复项
var allCategoryIds = storeallcategory.map(function(item) {
return String(item.news_cp_category_row_id); // 将ID转换为字符串
});
var uniqueCategoryIds = Array.from(new Set(allCategoryIds)); // 获取唯一的ID
// 将templateId转换为字符串以进行比较
var templateIdStr = String(templateId);
// 检查唯一类别ID中是否不包含templateId
if (!uniqueCategoryIds.includes(templateIdStr)) {
var idNotMatchTounsubscribe = document.getElementById(‘unsubscribe_’ + templateIdStr);
var idNotMatchTosubscribe = document.getElementById(‘subscribe_’ + templateIdStr);
// 在应用显示更改之前检查元素是否存在
if (idNotMatchTounsubscribe) {
idNotMatchTounsubscribe.style.display = “none”;
}
if (idNotMatchTosubscribe) {
idNotMatchTosubscribe.style.display = “none”;
}
}
} else {
console.log(“storeallcategory不是一个数组。”);
}
},
error: function(xhr, status, error) {
console.error(“AJAX请求失败:”, status, error);
}
});
const subscribewithoutData = localStorage.getItem(‘subscribe_without_Login’);
const subscribe_clicked_cat_id = localStorage.getItem(‘subscribe_clicked_id’);
// 获取Cookie的函数
function getCookie(name) {
let value = “; ” + document.cookie;
let parts = value.split(“; ” + name + “=”);
if (parts.length == 2) return parts.pop().split(“;”).shift();
}
// 从Cookie中获取用户令牌
const userToken = getCookie(‘user_token’);
if (subscribewithoutData === ‘true’ && userToken) {
// 使用类别ID调用模态框函数
subscribed_popupmodal(subscribe_clicked_cat_id);
// 从localStorage中移除标志和类别ID
localStorage.removeItem(‘subscribe_without_Login’);
localStorage.removeItem(‘subscribe_clicked_id’);
}
});
/************************** 更新订阅内容 *************************** */
function initializeSubscriptionButton() {
var initialListItems = document.querySelectorAll(‘.subscription-options input[type=”checkbox”]’);
initialListItems.forEach(function(item) {
console.log(item.checked, ‘初始复选框选中状态’);
});
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; // 将anyActive设置为true
} else {
item.classList.remove(‘active’); // 如果复选框未选中,则删除“active”类
}
}
});
}
function updateButtonText(anyActive) {
var subscribeButtonSpan = document.querySelector(‘.subscribe-submit .changeBtnText’);
if (subscribeButtonSpan) {
if (anyActive) {
subscribeButtonSpan.textContent = ‘立即订阅’;
} else {
subscribeButtonSpan.textContent = ‘取消订阅’;
}
}
}
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; // 将anyActive设置为true
} else {
item.classList.remove(‘active’); // 如果复选框未选中,则删除“active”类
}
}
});
// 根据任何列表项是否具有“active”类来更新按钮文本
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();
}
}
});
GIPHY App Key not set. Please check settings