

Title: Dante Disparte, Circle's global policy leader, believes cryptocurrency space needs more regulatory clarity
Dante Disparte, Global Policy Director at Circle, believes that the cryptocurrency sector urgently needs a clearer regulatory framework, such as the EU's Crypto Assets Markets Act (MiCA).
In a roundtable discussion at the Paris Blockchain Week, Disparte and Ari Redbord, global policy director at TRM Labs, jointly highlighted the importance of clear regulations in attracting more investors, financial institutions and other stakeholders into the cryptocurrency space.
Disparte notes that effective regulations can attract international investment, especially in France, where legal certainty provided by MiCA will encourage more investment. He believes that Europe has the best opportunity to regulate Internet financial services with the MiCA framework.
The Circle (USDC) team has been committed to pushing the United States to pass two stablecoin bills - the Responsible Financial Innovation Act and the Stablecoin Act, in order to achieve the legal clarity that MiCA brings to the European market. Disparte said that the coordination between the two bills and the MiCA framework will achieve mutual recognition of transatlantic regulatory measures and avoid competition between the United States and Europe.
In addition, Circle supports European regulators to equate stablecoins that meet MiCA standards with electronic currencies and agrees with MiCA's prohibition on stablecoins issuance from paying interest or income to holders. Disparte believes that the innovation of stablecoins should be reflected in the secondary market, and its functions should focus on units of measurement, medium of exchange, and store of value equivalent to fiat currencies such as the US dollar or the euro.
MiCA proposed in June 2023 that it has set strict regulations and standards for cryptocurrency companies and stablecoin issuers, including prohibiting payment of stablecoin proceeds. Therefore, issuers such as Tether (USDT) and Circle must comply with MiCA to continue operating in Europe. In July 2024, Circle became the first stablecoin company to obtain an electronic currency institution license issued by French regulators, allowing it to sell its MiCA-compliant stablecoins across Europe.
The above is the detailed content of Title: Dante Disparte, Circle's global policy leader, believes cryptocurrency space needs more regulatory clarity. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The top ten cryptocurrency exchanges in the world in 2025 include Binance, OKX, Gate.io, Coinbase, Kraken, Huobi, Bitfinex, KuCoin, Bittrex and Poloniex, all of which are known for their high trading volume and security.

DMA in C refers to DirectMemoryAccess, a direct memory access technology, allowing hardware devices to directly transmit data to memory without CPU intervention. 1) DMA operation is highly dependent on hardware devices and drivers, and the implementation method varies from system to system. 2) Direct access to memory may bring security risks, and the correctness and security of the code must be ensured. 3) DMA can improve performance, but improper use may lead to degradation of system performance. Through practice and learning, we can master the skills of using DMA and maximize its effectiveness in scenarios such as high-speed data transmission and real-time signal processing.

Write files in C using the ofstream class. 1) Create ofstream object and open the file. 2) Select the file mode, such as append mode (std::ios::app). 3) Implement error handling and use exception capture. 4) Optimize performance and use buffer management. 5) Use RAII technology to automatically manage file resources.

C's package management tools mainly include the FetchContent of vcpkg, Conan and CMake. 1.vcpkg is suitable for large projects and multi-dependence scenarios, and is easy to use. 2.Conan emphasizes flexibility and customization, suitable for projects that require strict version control. 3. FetchContent is suitable for small projects and fast integration, and has relatively limited functions.

Implementing lock-free data structures in C can be achieved by using atomic operations and CAS operations. The specific steps include: 1. Use std::atomic to ensure the atomic operation of head and tail; 2. Use compare_exchange_strong to perform CAS operations to ensure data consistency; 3. Use std::shared_ptr to manage node data to avoid memory leakage.

Use the EXPLAIN command to analyze the execution plan of MySQL queries. 1. The EXPLAIN command displays the execution plan of the query to help find performance bottlenecks. 2. The execution plan includes fields such as id, select_type, table, type, possible_keys, key, key_len, ref, rows and Extra. 3. According to the execution plan, you can optimize queries by adding indexes, avoiding full table scans, optimizing JOIN operations, and using overlay indexes.

Implementing singleton pattern in C can ensure that there is only one instance of the class through static member variables and static member functions. The specific steps include: 1. Use a private constructor and delete the copy constructor and assignment operator to prevent external direct instantiation. 2. Provide a global access point through the static method getInstance to ensure that only one instance is created. 3. For thread safety, double check lock mode can be used. 4. Use smart pointers such as std::shared_ptr to avoid memory leakage. 5. For high-performance requirements, static local variables can be implemented. It should be noted that singleton pattern can lead to abuse of global state, and it is recommended to use it with caution and consider alternatives.

To implement firmware updates in C, you can use the following steps: 1. Use a stable communication protocol to transfer firmware files; 2. To implement bootloader to receive and write firmware to flash memory; 3. To ensure the security and reliability of the update process and prevent the equipment from becoming bricked.