Introduction
Recently, Google announced its breakthrough quantum computing chip – Willow, which has successfully solved a major challenge in the field of computing: the chip can complete computing tasks that traditional supercomputers would take billions of years to complete in just 5 minutes. This advancement not only shocked the tech industry but also reignited discussions about the potential threat of quantum computing to the security of cryptocurrencies, especially the encryption mechanisms of mainstream cryptocurrencies like Bitcoin.
Bitcoin BTC Latest Price Trend Today
BTC (Bitcoin) Bitcoin
NO.1
Robinhood Online
$97460.71
+$696.70
+0.72%
Real-time Data ·
12:49:28
98270.00
24H High
94256.54
24H Low
103900.47
Historical High
0.04865
Historical Low
102 million
24h Trading Volume
998.4 billion
24h Trading Volume
21 million
Total Supply
19281.4 billion
Market Cap
+4.26%
24h Fluctuation
19794396
Circulating Supply
97,812.00
Yesterday Open
95,658.79
Yesterday Close
94.26%
Circulation Rate
Candlestick
Trend
All
24H
7 Days
30 Days
Last Three Months
Last Year
let tabIdx = 0;
let timeIdx = 0;
let type = ‘all’;
$(‘.echarts_head .head_left_item’).click(function () {
$(‘.echarts_head .head_left_item’).removeClass(‘active’);
tabIdx = $(this).index();
$(this).addClass(‘active’);
if (tabIdx == 1) {
$(‘#tvChart’).hide();
$(‘#trendChart’).show();
return;
}
$(‘#trendChart’).hide();
$(‘#tvChart’).show();
})
$(‘.echarts_head .head_right_item’).click(function () {
$(‘.echarts_head .head_right_item’).removeClass(‘active’);
timeIdx = $(this).index();
$(this).addClass(‘active’);
})
var klineData;
getTjList();
function getTjList(start, interval, type) {
let url = ‘/e/extend/api/index.php?m=v2&c=kline&coin=binance_BTC_USDT&id=1’;
$.ajax({
url: url + ‘&start=’ + start + ‘&interval=’ + interval + ‘&type=’ + type,
data: ”,
type: ‘post’,
cache: false,
dataType: ‘json’,
success: function (resdata) {
klineData = resdata
setTimeout(function () {
initKline(type)
}, 500);
},
error: function (e) {
console.log(‘resdata e’, e);
// alert (“异常!”);
}
});
}
function initKline(type) {
let typeStr = type ? type : ‘all’
const periodTypeList = {
‘all’: 3,
‘d’: 14,
‘w’: 2,
‘m’: 2,
‘3m’: 3,
‘ydt’: 3,
}
const coinName = ‘BTC’;
const periodType = periodTypeList[typeStr];
// 数据要升序才能正常显示
const historyData = klineData
.sort((cur, next) => cur.T – next.T)
.map((item) => {
return {
time: item.T,
low: item.l,
high: item.h,
open: item.o,
close: item.c,
volume: item.v,
};
});
const exchange = “528BTC”;
const tradePair = `${coinName}/USDT`
const config = {
periodType,
datafeedConfig: {
periodType,
historyData,
symbolInfo: {
ticker: `${exchange}:${tradePair}`,
name: tradePair,
description: tradePair,
type: “528btc”,
exchange,
},
},
tradingViewConfig: {
symbol: `${exchange}:${tradePair}`,
interval: periodType,
container: `tvChart`,
},
}
let length = historyData.length <= 90 ? (historyData.length) - 1 : 90;
console.log(length)
const visibleRangeOption = {
// 这里的时间单位是 秒
from: historyData[length].time / 1000,
to: historyData[0].time / 1000,
};
const widget = generateTradingViewAndMount(config);
widget.onChartReady(() => {
const chart = widget.chart();
chart.setVisibleRange(visibleRangeOption);
});
//chart.setPriceVolumePrecision(8,8)
}
function changeKline(type) {
type = type;
const currentTimeStamp = Date.now();
// 一天前的时间戳
const oneDayAgoTimeStamp = currentTimeStamp – (24 * 60 * 60 * 1000);
// 七天前的时间戳
const sevenDaysAgoTimeStamp = currentTimeStamp – (7 * 24 * 60 * 60 * 1000);
// 一个月前的时间戳
const oneMonthAgoTimeStamp = new Date().setMonth(new Date().getMonth() – 1);
// 三个月前的时间戳
const threeMonthsAgoTimeStamp = new Date().setMonth(new Date().getMonth() – 3);
// 一年前的时间戳
const oneYearAgoTimeStamp = new Date().setFullYear(new Date().getFullYear() – 1);
const time = {
‘all’: ”,
‘d’: oneDayAgoTimeStamp,
‘w’: sevenDaysAgoTimeStamp,
‘m’: oneMonthAgoTimeStamp,
‘3m’: threeMonthsAgoTimeStamp,
‘ydt’: oneYearAgoTimeStamp,
}
// 5m,15m,30m,1h,6h
const interval = {
‘all’: ”,
‘d’: ‘5m’,
‘w’: ‘1h’,
‘m’: ‘1h’,
‘3m’: ‘1d’,
‘ydt’: ‘1d’,
}
if (tabIdx == 1) {
getTrendLine(type)
return;
}
getTjList(time[type], interval[type], type)
}
let bid = ‘BTC’
Highcharts.setOptions({
lang: {
rangeSelectorZoom: ”,
thousandsSep: ”
},
global: {
useUTC: false
}
});
getTrendLine(type)
function getTrendLine(type) {
$.getJSON(‘https://bullrunflash.com/e/extend/api/index.php?m=news&c=kdata&type=’ + type + ‘&id=1&cid=1’, function (data) {
var T = [];
var u = [];
var b = [];
var a = [];
var v = [];
data.data.forEach(item => {
let [time, ui, bi, ai, vi] = item;
u.push([time, ui]);
b.push([time, bi]);
a.push([time, ai]);
v.push([time, vi]);
})
// 创建图表
chart1 = Highcharts.stockChart(‘trendChart’, {
chart: {
zoomType: ‘x’,
height: 520,
width: 780
},
colors: [‘#5984FB’, ‘#AE5CCC’, ‘#F7D049’, ‘#777’,
‘#24CBE5’, ‘#64E572’, ‘#FF9655’, ‘#FFF263’, ‘#6AF9C4’],
rangeSelector: {
selected: 5,
enabled: false, // 取消筛选
inputDateFormat: ‘%Y-%m-%d’
},
scrollbar: {//取消下部滚动条
enabled: false
},
tooltip: {
split: false,
shared: true,
dateTimeLabelFormats: {
millisecond: ‘%Y-%m-%d %H:%M’,
second: ‘%Y-%m-%d %H:%M’,
minute: ‘%Y-%m-%d %H:%M’,
hour: ‘%Y-%m-%d %H:%M’,
day: ‘%Y-%m-%d %H:%M’,
week: ‘%Y-%m-%d %H:%M’,
month: ‘%Y-%m-%d %H:%M’,
year: ‘%Y-%m-%d %H:%M’
}
},
yAxis: [{
title: {
text: ‘Total Volume’,
style: {
color: “#7cb5ec”
}
},
visible: false,
height: ‘80%’,
labels: {
formatter: function () {
return (this.value / 1000000000).toString() + ‘ Billion’;
},
style: {
color: “#7cb5ec”
}
},
opposite: false,
}, {
title: {
text: ‘Price (USD)’,
style: {
color: “#009933”
}
},
visible: false,
labels: {
style: {
color: “#009933”
}
},
height: ‘80%’,
}, {
title: {
text: ‘Price (BTC)’,
style: {
color: “#f7931a”
}
},
visible: false,
labels: {
formatter: function () {
return this.value + bid;
},
style: {
color: “#f7931a”
}
},
height: ‘80%’,
}, {
title: {
text: ‘Market Cap’,
style: {
color: “#777”
}
},
visible: false,
labels: {
formatter: function () {
return (this.value / 1000000000).toString() + ‘ Billion’;
},
style: {The Potential of Quantum Computing and the Security Concerns for Cryptocurrencies
Quantum computing, a method of computation based on the principles of quantum mechanics, differs from traditional computers, which rely on binary digits (0 and 1). Quantum computers use quantum bits (qubits), enabling them to process multiple computational paths simultaneously. Google’s Willow chip is considered a significant breakthrough in quantum computing, featuring 105 qubits and capable of solving tasks that would take a traditional computer 1 billion years in just 5 minutes. This development has sparked a new round of discussions on the security of cryptocurrencies, particularly Bitcoin.
The advantage of quantum computing lies in its ability to efficiently factor large numbers using Shor’s algorithm, which can break the encryption methods currently in use, such as RSA encryption. The advent of this algorithm theoretically allows quantum computers to attack systems that rely on public-key encryption, thereby threatening the security of blockchain technology, especially Bitcoin addresses that initially used the “Pay-to-Public-Key” (P2PK) format.
Quantum Threat: Early Vulnerabilities in Bitcoin
Bitcoin initially adopted the “Pay-to-Public-Key” (P2PK) format, which directly exposed the public key, providing attackers ample time to carry out attacks. In theory, quantum computers could use Shor’s algorithm to derive the private key from the public key, thus gaining access to Bitcoin accounts. Although modern Bitcoin wallets and blockchain systems no longer use the P2PK format, replacing it with the more secure “Pay-to-Public-Key-Hash” (P2PKH) format, which effectively reduces the risk of quantum attacks, the 1 million Bitcoins held by Bitcoin’s creator, Satoshi Nakamoto, are still stored in an address using the P2PK format, making it a potential target for quantum computing attacks.
(Suspected Satoshi Nakamoto Bitcoin Address – CoinWorld)
Emin Gün Sirer, the founder of Avalanche, pointed out that while the threat of quantum computing is concerning, current technology is still insufficient to pose an actual threat to the Bitcoin network. In Bitcoin transactions, the public key is only exposed at the time of the transaction’s initiation, so quantum attackers would only have a brief window of opportunity before the transaction is written into the blockchain. The faster the blockchain, the more difficult the quantum attack becomes. Systems like Avalanche, which have a transaction finality window of just a few seconds, are therefore more resistant to quantum attacks.
However, Emin Gün Sirer also suggested that despite the current inability of quantum computing to threaten most cryptocurrencies, as quantum technology progresses, the Bitcoin community may need to consider measures to protect early P2PK format addresses, or even freeze Satoshi Nakamoto’s Bitcoins. Some Bitcoin supporters may oppose this, arguing that it contradicts Bitcoin’s principles of decentralization and immutability.
The Cryptocurrency Industry’s Response: Quantum-Resistant Encryption Solutions
Despite the widespread concern over the potential threats of quantum computing, industry experts generally agree that quantum computers are still far from having the capacity to crack Bitcoin’s encryption system. According to recent research, quantum computers would need millions of qubits to break the cryptographic algorithms upon which Bitcoin relies. Analysts predict that this technological breakthrough may not occur until around 2040.
In response to this threat, the cryptocurrency industry has already been actively developing quantum-resistant encryption technologies. Ethereum’s founder, Vitalik Buterin, has stated that quantum computers do not mean that all cryptographic systems will be broken, as many cryptographic algorithms have quantum-resistant alternatives. The cryptocurrency sector is actively researching and implementing “quantum-resistant” encryption algorithms to ensure that blockchain systems can maintain their security in the quantum computing era.
The Impact of Quantum Computing on the Cryptocurrency Market
The advancement of quantum computing technology may not only change the security landscape of cryptocurrencies but could also have a profound impact on the entire cryptocurrency market. Google’s announcement of its quantum chip breakthrough once triggered a wave of panic, especially as mainstream cryptocurrencies like Bitcoin and Ethereum saw short-term price corrections. With the re-emergence of the quantum threat, the sentiment among cryptocurrency investors has also been somewhat affected.
However, despite the new risks introduced by quantum computing, the cryptocurrency community is now more focused on security and technological innovation. Market whales are still actively accumulating assets, and recent off-market trading data for USDT indicates a premium, suggesting that investors remain optimistic about the future of the market. For long-term investors, the current market correction could present a buying opportunity.
Conclusion
The progress of quantum computing is undoubtedly a significant challenge for the cryptocurrency industry, but the actual impact of this threat is still far from being realized. As technology develops, the cryptocurrency field is actively addressing the challenges posed by quantum computing, developing quantum-resistant encryption algorithms and protective measures to ensure the security and reliability of blockchain technology.
While quantum computing introduces uncertainty for the future of cryptocurrencies, it also provides new impetus for technological innovation. Investors should pay attention to the dynamics of the cryptocurrency market, maintain a cautiously optimistic attitude, and closely monitor the latest developments in quantum technology to prepare for potential challenges. In this process, the realization of quantum-resistant technologies will become an important issue that cannot be ignored in the cryptocurrency industry.