net_left Kdata adver left
Detail

Zero-Knowledge Proofs and Maintaining Privacy

Regulatory guidelines for crypto, such as MiCA, aim to raise transparency and traceability of transactions. Legislators are concerned about the use of privacy-enhancing...
Zero-Knowledge Proofs and Maintaining Privacy Zero-Knowledge Proofs and Maintaining Privacy
let atwWrapper,atwContainerWidth,atwSliderBox,atwTotalWidth; function initATWSlider() { atwWrapper = $('.relatedInstruments'); atwSliderBox = atwWrapper.find('.slider'); atwContainerWidth = atwWrapper.width(); atwTotalWidth = atwSliderBox.width(); if(window.domainId === '2' || window.domainId === '3'){ atwWrapper.find('.sliderRight').addClass('js-slider-prev'); atwWrapper.find('.sliderLeft').addClass('js-slider-next'); } else { atwWrapper.find('.sliderRight').addClass('js-slider-next'); atwWrapper.find('.sliderLeft').addClass('js-slider-prev'); } if(atwSliderBox.find('.instrumentBox').length > 6){ atwWrapper.find('.js-slider-next').fadeIn(600); } } function atwMoveRight() { atwWrapper.find('.js-slider-prev').fadeIn(150); $(".slider > :visible:first").hide(150) $(".slider > :visible:last").next().show(150); if(!$(".slider > :visible:last").next().find('.name')()){ atwWrapper.find('.js-slider-next').fadeOut(150); return; } } function atwMoveLeft() { atwWrapper.find('.js-slider-next').fadeIn(150); $(".slider > :visible:last").hide(150); $(".slider > :visible:first").prev().show(150); if(!$(".slider > :visible:first").prev().find('.name')()){ atwWrapper.find('.js-slider-prev').fadeOut(150); return; } } initATWSlider(); //update star icon on adding/removing instrument to/from specific watchlist atwWrapper.on('click', 'label.addRow', function() { let parent = $(this).parent(); let checkedPortfolio = false; parent.find('input[type=checkbox]').each(function () { if($(this).is(':checked')){ checkedPortfolio = true; } }); let closestStar = $(this).closest('.addToPortWrapper').find('.star'); if(checkedPortfolio){ closestStar.addClass('added'); }else{ closestStar.removeClass('added'); } }); //update star icon on creating new watchlist atwWrapper.find('.js-create-watchlist-portfolio').find('a.js-create').on('click',function () { let parent = $(this).parent(); let watchlistName = parent.find('input[type=text]').val(); if(!watchlistName){ return; } let star = $(this).closest('.addToPortWrapper').find('.star'); star.addClass('added'); }); //update star icon on adding new position atwWrapper.find('.js-create-holdings-portfolio').find('.js-submit').on('click',function () { let addPositionForm = $(this).closest('.addToPortfolioPop').find('.holdingsContent'); let amount = addPositionForm.find('.js-amount').val(); if(amount < 1){ return; } let star = $(this).closest('.addToPortWrapper').find('.star'); star.addClass('added'); }); atwWrapper.find('.instrumentBox').find('.shortInfo').on('click',function () { if(!window.ga){ return; } let pairId = $(this).parent().find('.js-add-to-portfolio').attr('data-pair-id'); let pairType = window.atwPairTypes[pairId]; window.ga('allSitesTracker.send', 'event', 'content', 'symbol link clicked', '', { "dimension147":"symbol_link_clicked", "dimension163":"click", "dimension148":"symbol", "dimension162":"content add to watchlist", "dimension161":"article page", "dimension142":"article", "dimension75":pairType, "dimension138":pairId, "dimension118":"2971421" }); window.open($(this).attr('data-href')); }); window.atwPairTypes = {"1057391":"indice","1058142":"currency"};

  • Regulatory guidelines for crypto, such as MiCA, aim to raise transparency and traceability of transactions.
  • Legislators are concerned about the use of privacy-enhancing tools in crypto for terrorism financing and sanction evasion.
  • Zero-knowledge proof mechanisms could provide a compromise between privacy and total anonymity.

Regulatory concerns around the role of crypto in terrorism financing and the evasion of sanctions have intensified in 2022. Following the sanctions imposed on Russia for its invasion of Ukraine, legislators increased their scrutiny of cryptocurrency exchanges as Russian nationals sought alternatives.

The movements of the North Korean cybercrime organization Lazarus Group, linked with this year’s $625 million Ronin hack, also brought attention to privacy-focused mixer solutions. These include Tornado Cash, sanctioned by U.S. officials in August.

These events, among others, have made anonymity in the cryptocurrency space a point of contention among regulators. Accordingly, the issue of holding blockchain networks, exchanges, and individuals accountable has become a top priority.

Landmark Legislation: Traceability and Transparency

Although no clear guidelines for regulation have been set out in the U.S., despite some strong assertions, Europe is working on setting the tone.

As proposed by the European Commission in June 2021, the Anti-Money Laundering Authority (AMLA) will require crypto-asset service providers to verify the identity of customers performing transactions worth more than €1,000.

In addition to the AMLA, the EU’s approved Markets in Crypto Assets (MiCA) regulation is expected to restrict the trade of “crypto-assets which have inbuilt anonymisation function unless the holders of the crypto-assets and their transaction history can be identified” by exchanges.

There are fears within the crypto sector that, by seeking to limit anonymity in this way, regulation threatens the very ideals that form decentralization.

.tweet-container,.twitter-tweet.twitter-tweet-rendered,blockquote.twitter-tweet{min-height:261px}.tweet-container{position:relative}blockquote.twitter-tweet{display:flex;max-width:550px;margin-top:10px;margin-bottom:10px}blockquote.twitter-tweet p{font:20px -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif}.tweet-container div:first-child{ position:absolute!Important }.tweet-container div:last-child{ position:relative!Important }

Zero-Knowledge Proofs as a Compromise

Illicit activity in the sector has raised tensions among regulators and investors alike. However, innovations have also been made to help blockchain networks remain compliant without sacrificing privacy or on-chain efficiency.

At the Web3 Summit in Vilnius, DailyCoin spoke to Ryan King, the Head of Business Development at Dusk Network. He believes that the answer to tackling the tricky topic of maintaining user privacy while also staying compliant with regulations lies in zero-knowledge proof mechanisms (ZKP).

“Zero-knowledge allows us to thread the needle on those issues, and to prove that conditions are true or false without revealing anything other than the fact that that condition is true or false, which serves the purpose of the regulation.” Mr. King opined, emphasizing that, in terms of the identity of the transactor “you don’t actually need to know.” Indeed, through ZKPs, it is possible to validate user identity without presenting their personal information or data.

How Zero-Knowledge Proof Works

Zero-knowledge proofs are a methodology in which the authenticator proves that they both possess the relevant information and know it is true without divulging what the information is.

In the case of transactions performed on a blockchain, ZKPs allow an operation to be approved by verifying that the user is both valid and legal without providing any of the user’s personal information.

As Ryan King explained:

“I’m not trying to prove that Mr. X is Mr. X, I’m trying to prove that Mr. X is from this bucket of accredited investors, and is not from this bucket of sanctioned people.” The next iteration of zkRollups are being developed in the form of zero-knowledge Ethereum Virtual Machines (zkEVM). The advances in this technology have the potential to be a staple in enhanced verification processing.

On the Flipside

  • Zero-knowledge development has occurred chiefly on Ethereum and its Layer-2s. On the other hand, Bitcoin has shown little sign of adopting the mechanism.
  • As in the case of the revisions made to the Markets in Financial Instruments Directive (MiFID) and AML regulations, the MiCA regulations are not set in stone and may be amended with stricter requirements.

Why You Should Care

Regulation will play an important role in the future of cryptocurrency and its adoption. While it will provide much-needed protections in what has been described as a Wild West, a compromise must be made. It is crucial to preserve the ideals of trustlessness and decentralization that the industry was founded on.

Find out more about regulation next year:

Is Europe Poised to Become a Crypto Enthusiast’s Dream?

How else could regulation affect the current landscape? Read more below:

Crypto Influencers Could Face Market Manipulation Charges as MiCA Nears Enforcement

See original on DailyCoin

HOT AUTO TRADE BOT SOFTWARE adver right
APPROVED BROKERS
net_home_top HOT AUTO TRADE BOT SOFTWARE
01-05-2024 10:45:17 (UTC+7)

EUR/USD

1.0658

-0.0008 (-0.07%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (2)

Sell (3)

EUR/USD

1.0658

-0.0008 (-0.07%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (2)

Sell (3)

GBP/USD

1.2475

-0.0015 (-0.12%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (0)

Sell (10)

USD/JPY

157.91

+0.12 (+0.07%)

Summary

↑ Buy

Moving Avg:

Buy (12)

Sell (0)

Indicators:

Buy (9)

Sell (0)

AUD/USD

0.6469

-0.0003 (-0.05%)

Summary

Neutral

Moving Avg:

Buy (10)

Sell (2)

Indicators:

Buy (2)

Sell (3)

USD/CAD

1.3780

+0.0003 (+0.03%)

Summary

↑ Buy

Moving Avg:

Buy (12)

Sell (0)

Indicators:

Buy (7)

Sell (0)

EUR/JPY

168.32

+0.10 (+0.06%)

Summary

↑ Buy

Moving Avg:

Buy (12)

Sell (0)

Indicators:

Buy (9)

Sell (0)

EUR/CHF

0.9808

+0.0001 (+0.01%)

Summary

Neutral

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (3)

Sell (2)

Gold Futures

2,295.80

-7.10 (-0.31%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (0)

Sell (9)

Silver Futures

26.677

+0.023 (+0.09%)

Summary

↑ Sell

Moving Avg:

Buy (2)

Sell (10)

Indicators:

Buy (0)

Sell (9)

Copper Futures

4.5305

-0.0105 (-0.23%)

Summary

↑ Buy

Moving Avg:

Buy (10)

Sell (2)

Indicators:

Buy (8)

Sell (1)

Crude Oil WTI Futures

81.14

-0.79 (-0.96%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (1)

Sell (7)

Brent Oil Futures

85.62

-0.71 (-0.82%)

Summary

↑ Sell

Moving Avg:

Buy (1)

Sell (11)

Indicators:

Buy (1)

Sell (7)

Natural Gas Futures

1.946

-0.009 (-0.46%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (0)

Sell (5)

US Coffee C Futures

213.73

-13.77 (-6.05%)

Summary

↑ Sell

Moving Avg:

Buy (3)

Sell (9)

Indicators:

Buy (0)

Sell (10)

Euro Stoxx 50

4,920.55

-60.54 (-1.22%)

Summary

↑ Sell

Moving Avg:

Buy (4)

Sell (8)

Indicators:

Buy (1)

Sell (7)

S&P 500

5,035.69

-80.48 (-1.57%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (0)

Sell (7)

DAX

17,921.95

-196.37 (-1.08%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (1)

Sell (6)

FTSE 100

8,144.13

-2.90 (-0.04%)

Summary

Sell

Moving Avg:

Buy (5)

Sell (7)

Indicators:

Buy (2)

Sell (4)

Hang Seng

17,763.03

+16.12 (+0.09%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (1)

Sell (6)

US Small Cap 2000

1,973.05

-42.98 (-2.13%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (0)

Sell (7)

IBEX 35

10,854.40

-246.40 (-2.22%)

Summary

Neutral

Moving Avg:

Buy (6)

Sell (6)

Indicators:

Buy (3)

Sell (3)

BASF SE NA O.N.

49.155

+0.100 (+0.20%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (1)

Sell (7)

Bayer AG NA

27.35

-0.24 (-0.87%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (0)

Sell (8)

Allianz SE VNA O.N.

266.60

+0.30 (+0.11%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (3)

Sell (5)

Adidas AG

226.40

-5.90 (-2.54%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (2)

Sell (7)

Deutsche Lufthansa AG

6.714

-0.028 (-0.42%)

Summary

Neutral

Moving Avg:

Buy (3)

Sell (9)

Indicators:

Buy (9)

Sell (1)

Siemens AG Class N

175.90

-1.74 (-0.98%)

Summary

↑ Sell

Moving Avg:

Buy (0)

Sell (12)

Indicators:

Buy (0)

Sell (9)

Deutsche Bank AG

15.010

-0.094 (-0.62%)

Summary

Neutral

Moving Avg:

Buy (4)

Sell (8)

Indicators:

Buy (6)

Sell (2)

    EUR/USD 1.0658 ↑ Sell  
    GBP/USD 1.2475 ↑ Sell  
    USD/JPY 157.91 ↑ Buy  
    AUD/USD 0.6469 Neutral  
    USD/CAD 1.3780 ↑ Buy  
    EUR/JPY 168.32 ↑ Buy  
    EUR/CHF 0.9808 Neutral  
    Gold 2,295.80 ↑ Sell  
    Silver 26.677 ↑ Sell  
    Copper 4.5305 ↑ Buy  
    Crude Oil WTI 81.14 ↑ Sell  
    Brent Oil 85.62 ↑ Sell  
    Natural Gas 1.946 ↑ Sell  
    US Coffee C 213.73 ↑ Sell  
    Euro Stoxx 50 4,920.55 ↑ Sell  
    S&P 500 5,035.69 ↑ Sell  
    DAX 17,921.95 ↑ Sell  
    FTSE 100 8,144.13 Sell  
    Hang Seng 17,763.03 ↑ Sell  
    Small Cap 2000 1,973.05 ↑ Sell  
    IBEX 35 10,854.40 Neutral  
    BASF 49.155 ↑ Sell  
    Bayer 27.35 ↑ Sell  
    Allianz 266.60 ↑ Sell  
    Adidas 226.40 ↑ Sell  
    Lufthansa 6.714 Neutral  
    Siemens AG 175.90 ↑ Sell  
    Deutsche Bank AG 15.010 Neutral  
Mua/Bán 1 chỉ SJC
# So hôm qua # Chênh TG
SJC Eximbank8,300/ 8,500
(8,300/ 8,500) # 1,298
SJC 1L, 10L, 1KG8,300/ 8,520
(0/ 0) # 1,510
SJC 1c, 2c, 5c7,380/ 7,550
(0/ 0) # 540
SJC 0,5c7,380/ 7,560
(0/ 0) # 550
SJC 99,99%7,370/ 7,470
(0/ 0) # 460
SJC 99%7,196/ 7,396
(0/ 0) # 386
Cập nhật 01-05-2024 10:45:19
Xem lịch sử giá vàng SJC: nhấn đây!
ↀ Giá vàng thế giới
$2,285.72 -47.5 -2.04%
Live 24 hour Gold Chart
ʘ Giá bán lẻ xăng dầu
Sản phẩm Vùng 1 Vùng 2
RON 95-V25.44025.940
RON 95-III24.91025.400
E5 RON 92-II23.91024.380
DO 0.05S20.71021.120
DO 0,001S-V21.32021.740
Dầu hỏa 2-K20.68021.090
ↂ Giá dầu thô thế giới
WTI $80.83 +3.39 0.04%
Brent $85.50 +3.86 0.05%
$ Tỷ giá Vietcombank
Ngoại tệMua vàoBán ra
USD25.088,0025.458,00
EUR26.475,3627.949,19
GBP30.873,5232.211,36
JPY156,74166,02
KRW15,9219,31
Cập nhật lúc 10:45:15 01/05/2024
Xem bảng tỷ giá hối đoái
adver main right