Tether is the most prominent player in the stablecoin market. It has a market cap of nearly $142,009,666,873. A statement posted on X by acclaimed business journalist Eleanor Terrett reveals that Tether is working with US lawmakers to develop a clear stablecoin regulatory framework in the country. Interestingly, as many as three stablecoin bills were introduced in the US House and Senate in the recent past. Here is everything you should know about the development.
NEW from me: Offshore stablecoin giant @Tether_to is working with U.S. lawmakers to influence how these fiat-backed currencies are regulated in the U.S.
The issuer of the world’s largest stablecoin $USDT has been a controversial figure in U.S. crypto policy circles due to an…
The X post by Eleanor states that Tether is working with US lawmakers to develop a clear stablecoin regulatory framework.
In the post, Eleanor notes that Tether CEO paolo ardoino
paolo ardoino Paolo Ardoino is the chief technology officer at Bitfinex. He graduated from the University of Genoa in the computer science program. Arduino became intimately concerned with cryptography and discovered distributed systems while undertaking research for a military project.Arduino began his career as a senior software developer at Bitfinex in 2014, and after two years, he was elevated to chief technology officer. He is also the commander, Bitfinex had a banner year in 2020, launching a staking service, institution-grade custody services, an open-source peer-to-peer streaming protocol, and a market surveillance tool, all under the technological supervision of Ardoino. In addition, the exchange earned headlines for conducting one of the largest Bitcoin transactions ever.
Details:
Organization: SwissBorgLocation: Lausanne, SwitzerlandEducation: Holds a degree in Computer Science and Engineering from a renowned universitySkills: Blockchain development, Smart contract engineering, Decentralized finance (DeFi), Cryptocurrency market analysis, Leadership in fintech and blockchain industries
FAQs
1. Paolo Arduino is who?SwissBorg's CTO, Paolo Arduino, is an expert in blockchain, DeFi, and cryptocurrency technology.2. What is Paolo Arduino's role at SwissBorg?SwissBorg's technical team is led by CTO Paolo Arduino, who specializes in blockchain and DeFi solutions.
confirmed the company’s commitment to support lawmakers to create the best stablecoin regulatory framework for the country.
She also emphasises that Ardoino, referring to the three stablecoin bills tabled in the US lawmaking houses lately, expressed his company’s intention to support the evolution process of these bills through meaningful advice.
She also mentions that the Tether CEO is very keen to ensure that his company’s voice should not go unnoticed.
As mentioned earlier, at least three stablecoin bills were tabled in the lawmaking houses in the US last week.
The STABLE Act was introduced by Bryan Steil, the chairman of the Financial Committee Digital Assets Subcommittee, and French Hill, a senior Congressman. The act targets to create a regulatory framework for stablecoins with bipartisan backing. Currently, it is under review.
The GENIUS Act was tabled by Bill Hagerty, an influential senator. The bill proposes federal oversight of payment stablecoins while preserving state regulatory authority. Notably, it has secured bipartisan support.
A stablecoin bill was also submitted by Maxine Waters, a senior lawmaker. If this bill is passed, it would require issuers to register and maintain one-to-one reserves backed by US currency or approved assets.
There are reports that the lawmaking houses aim to finalise the bills by April.
In conclusion, while stablecoins regulations are moving forward, Tether is positioning itself as an active player in shaping US stablecoin policies. The company remains committed to compliance but wants to ensure its voice is heard in legislative discussions.
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();
}
}
});