Why Schnorr signature is hailed as the biggest technological update after Bitcoin Segwit

Huobi ResearchPublié le 2022-02-19Dernière mise à jour le 2022-02-19

Résumé

As an update that may replace the ECDSA (elliptical encryption algorithm) signature mechanism, Schnorr signature is one of the most important milestones in the development of the underlying technology of Bitcoin.

1. Background

The Schnorr signature was originally created by the German cryptographer and mathematician Claus-Peter Schnorr (Figure 1), and the technology is also named after him. Based on a specific discrete logarithm problem, Schnorr has long been known for its security and simplicity. But Schnorr registered a patent for this signature. Therefore, good as the technology is, it can not be widely used in many applications for a long time.

The patent signed by Schnorr did not expire until 2008. In the mean time, the industry did not have a widely accepted specific implementation plan. So Satoshi Nakamoto, who released the Bitcoin white paper in the same year, did not choose the Schnorr signature technology, but the more mature technology, ECDSA signature scheme, at that time. With the expiration of this Schnorr patent, this technology gradually landed. Driven by core developers of the Bitcoin community such as Pieter Wuille, the community began to seriously consider applying Schnorr signatures to replace the current ECDSA signatures in a way of soft fork upgrade.

In July 2018, Bitcoin Core developer Pieter Wuille proposed to upgrade Schnorr's BIP, and then Blockstream and the open source community also participated in related development work. Before officially adopted by Bitcoin, the technology of Schnorr had been deployed in advance through a hard fork in Bitcoin's forked chain, BCH. In May 2019, BCH upgraded the signature scheme to Schnorr signature. The reason why it has been activated earlier is its upgrade way is hard fork rather than soft fork. But Bitcoin cannot adopt a hard fork scheme, which requires a more sophisticated soft fork scheme.

Later, Pieter Wuille further proposed the Taproot/Schnorr soft fork upgrade proposal, which was officially released in January this year(the BIP 340-342 mentioned in this article). This time, Schnorr's upgrade proposal has been officially merged into the code base. The three proposals merged into the Bitcoin master branch are BIP 340: Schnorr Signatures for secp256k1, BIP 341: Taproot: SegWit version 1 spending rules, and BIP 342: Validation of Taproot Scripts.

Among them, the first proposal is the main proposal of Schnorr signature, and Taproot is an abstract syntax tree upgrade of Merkel tree. Together with the Schnorr signature, it will allow Bitcoin to execute more smart contract scripts in a private manner; the last proposal is a supplement to the other two proposals, mainly upgrading the original Bitcoin script to support Schnorr signature, batch verification, signature hash, etc. However, it is worth noting that the Schnorr algorithm is still not standardized by the industry. The Schnorr used in the BIP 340 proposal is still tailor-made based on Bitcoin.

2. Schnorr signature and BIP proposal

2.1 What exactly is a Schnorr signature?

Schnorr is essentially a cryptographic signature technology. We can simply understand that in the Bitcoin system, Schnorr will be an alternative upgrade to ECDSA.

The full name of ECDSA is Elliptic Curve Digital Signature Algorithm. Its role in Bitcoin is not unfamiliar to us. We use ECDSA technology for every signature in the Bitcoin network. For example, if Alice wants to send a transaction, the miner must confirm that only Alice has the private key and the right to dispose of the asset. Therefore, Alice needs to use ECDSA to generate a unique signature that cannot be modified to prove that Alice has the private key and confirm the specific amount of the transaction. When Schnorr is officially activated, this work will be taken over by Schnorr. This process is shown in Figure 2.

2.2 Why do we need to change the signature scheme?

In the past 10 years, ECDSA has performed well, and seems to be able to perform the key task of generating signatures. However, there is a problem that has been lingering over ECDSA. At present, the industry has not been able to give a rigorous mathematical and cryptographic argumentation process to prove that ECDSA is mathematically safe. However, Schnorr can. Under certain conditions, the Schnorr signature technology is proved to be mathematically safe [5-6]. For cryptocurrencies that rely heavily on security such as Bitcoin, technologies that can prove security are certainly more reassuring than cannot.

At the same time, for Bitcoin, what is more important is that the Schnorr signature has a "linear" feature, which allows the public keys of multiple users to be aggregated into one public key through linear calculation, and the corresponding aggregated signature can be generated.

Why is the "linear" characteristic so important to the current Bitcoin? ECDSA itself does not support. So multi-signature in Bitcoin is now processed through P2SH scripts, but P2SH-like scripts will expose the existence of multi-signature transactions to the network, which can be used to infer all participants. Schnorr technology can aggregate multi-signatures into one, helping to enhance the privacy of transactions, save the space cost by multi-signature in the unlocking script, save valuable on-chain space, and realize expansion. On the whole, if widely popularized, this technology may be able to bring about 5% to 20% improvement in Bitcoin performance.

In addition, since several signatures are aggregated into one, only one single time of verification process is required when verifying all these signatures, which will reduce the cost of calculation. The technical details of this part will be described in the next chapter.

The great significance of Schnorr signature to Bitcoin also relies on its cornerstone role for technologies such as Taproot which is the content of the second proposal BIP341. Taproot is derived from MAST (Merkelized Abstract Syntax Tree), which can express complex scripts in the form of Merkel trees. We know that one of the important characteristics of the Merkel tree is that it can quickly verify the existence of a node value without revealing the true data of irrelevant branches, and it is widely used to store transactions and states data in the blockchain. Based on this feature, Taproot can complete the running of the script without revealing the irrelevant branches. In contrast, P2SH needs to reveal all the script content.

Combined with Schnorr signature technology, Taproot can even make a transaction with complex scripts (including Lightning Network transactions, multi-signature transactions, multi-judgment branch transactions, etc.) look like an ordinary P2PKH transaction. It supports complex scripts, protects script privacy, does not expose the signer, and makes a transaction with complex judgment conditions look as simple as an ordinary transaction, which cannot be distinguished from the form, which is the effect of the combination of Taproot and Schnorr.

2.3 In what form will Schnorr proceed?

Similar to many previous BIPs, this time Schnorr scheme will be conducted in a way of soft fork.

The full name of BIP is Bitcoin Improvement Proposals. Generally speaking, it includes updates to the underlying blockchain technology of Bitcoin, introduction of new features, and information supplements. Since Satoshi Nakamoto released the first version of the Bitcoin blockchain client in 2009, most technical updates have been added to Bitcoin technology in the form of BIP. At present, the Bitcoin community has adopted more than 100 BIP proposals, such as Segregated Witness (BIP 144), P2SH multi-signature structure (BIP 49) and Mnemonic (BIP 39).

The difference between a hard fork and a soft fork may not be unfamiliar to many people. In a hard fork, when the community has strong disagreements on certain features and technologies, the main chain will be divided into two, with the old and new clients incompatible with each other, such as BTC and BCH, BCH and BSV, etc. And in a soft fork, such as Segwit upgrade. Although the community may have opposite ideas, the chain can still remains only one, and the old and new clients can be compatible to a certain extent.

Hard forks may sometimes bring strong turbulence in the community. Therefore, the Bitcoin community have a long-term reservation about active hard fork upgrades and avoid hard fork upgrades as much as possible. This Bitcoin Schnorr upgrade will be completed through a soft fork, which is an important feature that it is likely to be successfully activated by the community.

Replacing the ECDSA signature seems to be a very big change. Why can Schnorr be able to complete it through a soft fork? This starts with Schnorr technology itself.

The security of Schnorr is based on such an assumption: that a particular discrete logarithm problem is very difficult to solve, and its security can be proved by mathematical means. In other words, as long as this assumption is true, the intractability of Schnorr signature will be equal to that of the discrete logarithm problem.

At the same time, the elliptic curve also has a problem very similar to the discrete logarithm. The security of the elliptic curve digital signature algorithm (ECDSA) in Bitcoin in the past is also based on the intractability of the elliptic curve discrete logarithm problem (ECDLP).

Therefore, the Schnorr signature still uses the elliptic curve inherited from the original Bitcoin and adopts a new calculation method, in order to be compatible with the version that does not want to upgrade to the greatest extent, and realize the soft fork upgrade.

On the other hand, Schnorr has made very little changes to the Segwit client, and the current penetration rate of the Segwit client exceeds 90%. According to statistics from luke.dashjr, as of October 2020, more than 90% of Bitcoin network nodes have updated their clients to version 0.16 or higher, which is the upgraded version of Segwit. Segwit isolates the signature information from the transaction information and attaches it to the end as a separate structure. Because the signature information only plays a role of verification and does not affect the key parameters of the transaction: such as the transfer address and quantity. Schnorr signatures mainly affect signature information. For clients that have upgraded Segwit features, Schnorr signatures only involve signature verification information attached to the end with a separate structure, which has little impact.

In summary, Schnorr signatures can be added to the underlying technology of Bitcoin in the form of a soft fork upgrade, without hard forks or bringing divisions to the community. Clients that reject Schnorr signature can still join the network normally and complete operations such as packaging like before. As a form of upgrading, soft forks are more difficult to implement and often require sophisticated designs to bypass certain rules, but they are more compatible and will not lead to consensus splits. In one word, it is a gradual-approach and gentle-update method.

Due to the gentle upgrade characteristics of the soft fork, the smaller drawbacks of Schnorr, and the favorable condition driven by core developers, it has a higher possibility of activation.

3. Analysis of Schnorr signature technical details

Next, let us analyze the technical details of Schnorr signature。

3.1 High security

The security of Schnorr signature has been proved mathematically, whereas ECDSA has not yet been proven. Although ECDSA has not had any safety issues for many years, it is like a volcano that has been silent for many years without erupting, which you don't know if it will erupt. But an algorithm that is mathematically proven must be more trustworthy than an algorithm that may have "hidden troubles".

Based on the mathematical proofs of scholars such as David Pointcheval and Yannick Seurin, we know that in the random prediction model, it is very difficult to assume the discrete logarithm of the elliptic curve. The only way to break through the Schnorr signature is to solve the discrete logarithm problem.

So in some ways, Schnorr signatures are more secure and trustworthy.

In addition, Schnorr signatures are not malleable, which can be fully demonstrated in comparison with ECDSA, which is a malleable signature algorithm. Specifically, based on the signature generated by ECDSA, an attacker can generate a new signature that is equally valid for a given message without knowing the private key. Bitcoin also specifically proposed BIP 146 to deal with this problem. However, Schnorr signatures are naturally non-extensible and can directly bypass this security problem.

3.2 Support the aggregation of signatures to save storage space

The aggregation of signatures mainly refers to the aggregation of multiple signatures. Multi-signature is a technology in Bitcoin that controls the use of funds. For example, our common "2 of 3" multi-signature requires that at least two of the three authorized parties have signed the transaction before the funds can be used.

For example, the picture above is a "2 of 3" multi-signature input script. You can see that there are 2 ECDSA signatures in the red box. With these 2 signatures, the funds can be used legally. However, ECDSA's multi-signature does not aggregate any of the signatures, just simply puts each signature in the input script, and the public keys of the two signers also need to be placed in the input script separately. If there is a "9 of 10" multi-signature, you need to store 9 signatures and 9 public keys in the block, which consume a lot of storage space.

While Schnorr signatures can solve this problem. The Schnorr signature aggregates a sum of m signatures from any "m of n" multi-signature into one signature through a technology called Key Aggregation, and the public keys of m signers can also be aggregated into 1 public key. No matter how big the number m is, only one signature and one public key need to be filled in the input script, which can greatly reduce the space occupied by the multi-signature in the block. The saving of space occupied by multi-signature pairs is shown in Figure 5.

The picture above is a simulation calculation made by Pieter Wuille on Bitcoin historical data. After replacing all the multi-signatures in Bitcoin historical data with Schnorr's aggregated signatures, the storage space of Bitcoin blocks can be significantly reduced.

The above mentioned is only one of Schnorr aggregated signatures, that is, "aggregate multiple signatures in a single UTXO input". In fact, Schnorr signatures have a more powerful function, which can "aggregate multiple signatures from multiple UTXO inputs", so that there is only one Schnorr signature for the entire UTXO. However, the preconditions for this kind of aggregation are harsher and more complicated to implement.

3.3 Shorter signature length, which can save storage space

According to the scheme proposed by Pieter Wuille, the Schnorr signature algorithm used in Bitcoin has a public key length of 32 bytes and a signature length of 64 bytes. The ECDSA signature algorithm currently used by Bitcoin has a public key length of 33 bytes, and a signature can reach up to 72 bytes (see Figure 3). The bitcoin block space is limited so saving a little space is of great significance.

Take the UTXO with 2 inputs and 2 outputs in the picture as an example, the part selected in the red box is the ECDSA signature filled in the input, with a length of 72 bytes, followed by the 33-byte public key. Then after adopting Schnorr signature, the space occupied by the signature and public key can be reduced to 64 bytes and 32 bytes.

There is actually a variant of Schnorr signature that reduces the signature to 48 bytes, but as it does not support batch verification, Pieter Wuille does not recommend it.

3.4 Stronger privacy protection

Schnorr can be used to aggregate multiple keys into one. It allows transactions issued by Bitcoin "multi-signature" wallets to display only the aggregated one, which makes multiple wallets more concise and private. In the past, when a user used a "multi-signature" wallet based on ECDSA signatures, it was easy to expose the multi-signature of the wallet because it had to show multiple public keys. However, if based on Schnorr signatures, multiple keys are aggregated off-chain, which can make a multi-signature transaction look the same as a normal transaction (ie, a single-signature transaction).

Again with the "2 of 3" multi-signature example above, the public keys of the two parties who provided the signature have been exposed. However, if Schnorr aggregated signature is used, the public key is also aggregated into one, so that it will not reveal which two parties participated in the multi-signature. The multi-signature after aggregation does not even look different from a normal "single-signature", which means that the outside world does not even know that this is a multi-signature. This greatly protects the privacy of multi-signature participants.

3.5 Signatures can be verified in batches to improve verification efficiency

Schnorr signatures, due to their linear feature, can naturally support batch verification. In fact, the principle is not complicated. The verification process of Schnorr signature is to judge whether the equation "s⋅G=R+e⋅P" is true. We can bring "s=r+ex" ,"R=r⋅G" ,"P=x⋅G" into the previous equation, then it becomes"(r+ex)⋅G=r⋅G+ex⋅G" , according to the distributive law of multiplication , it can be easily seen that the equation holds. And batch verification, when there are n such equations of s_1 "⋅G=" R_1 "+" e_1 "⋅" P_1,……,s_n "⋅G=" R_n "+" e_n "⋅" P_n need to be verified, we can add up all the left sides and all the right sides of them, so that we only need to verify whether the equation is true once, and in this way we can verify whether all the n signatures are valid.

In addition, when verifying n equations, the calculation of 〖s_1 "⋅G," s〗_2 "⋅G,……," s_n "⋅G" required n multiplications, but now it can be combined into only n-1 additions and 1 multiplication, which greatly improves the verification efficiency.

The linear feature of Schnorr signatures is natural, so even signatures from different users, different Tx, and even different blocks can be combined for batch verification. A new full node needs to do a lot of verification work when synchronizing block data. If Bitcoin uses Schnorr signatures, batch verification can significantly improve the synchronization speed of full nodes.

3.6 Some shortcomings

All of the above are the advantages of Schnorr signatures. In fact, these benefits come at a price. Because of the characteristic of Schnorr aggregating private key signatures, it requires multiple rounds of interaction between the participants, which is more troublesome than the past ECDSA. Moreover, it has relatively high requirements for random numbers. It is necessary to ensure that random numbers are not easy to be guessed by attackers. Some traditional pseudo-random number generation methods are not necessarily suitable. At the same time, calculating these signatures and random numbers is relatively cumbersome, so it will cause a slight delay in the step of sending transactions and require the PC to consume more computing bandwidth resources. But with current technology, these problems can be solved and overcome to a certain extent.

In addition, the Schnorr signature is not anti-quantum computing with regard to the anti-quantum computing problem that the industry is more concerned about. In the future, if quantum computing makes breakthrough progress, Bitcoin may need to continue to replace or upgrade Schnorr signatures, and may even undergo a hard fork upgrade.

4. Summary

Compared with ECDSA, Schnorr signature is more secure and credible, and by the way, it also brings the expansion of the space on the Bitcoin chain, which makes the performance of Bitcoin slightly improved. At the same time, Schnorr signature can also protect the privacy of participants in multi-signature, lightning network and other transactions, and can play a greater role combined with Taproot.

The proposal was promoted by members of the Core group for a mild upgrade in the form of soft fork. At present, the probability of smooth activation in the future is very high. It is expected that Schnorr signatures can bring more fresh technical vitality to Bitcoin and the blockchain world.

Lectures associées

Après la hausse de 32% de Marvell, une famille chinoise de puces émerge en arrière-plan

L'action de Marvell a bondi de 32,5% le 2 juin, atteignant un record historique, portée par la désignation de ses ASIC personnalisés et de ses interconnexions optiques comme « cœur de l'architecture des centres de données IA » par Jensen Huang, le PDG de Nvidia. Cette performance met en lumière la famille sino-américaine derrière la société : les frères et sœur Dai. Fondée en 1995 par Dai Weili, son mari Sehat Sutardja et son beau-frère Pantas Sutardja, Marvell n'est qu'une pièce d'un vaste réseau familial dans les semi-conducteurs. Le frère aîné, Dai Weimin, a fondé VeriSilicon (芯原), leader chinois de l'IP, cotée en Bourse. Le deuxième frère, Dai Weijin, a fondé Vivante (GPU IP), rachetée par VeriSilicon. Sur trois décennies, la famille a lancé ou investi dans au moins six sociétés majeures, dont deux introductions en Bourse et quatre acquisitions (comme Dream Big par Arm pour 265 M$ ou Alphawave par Qualcomm pour 2,4 G$). Leur portefeuille stratégique couvre désormais les points critiques de l'infrastructure IA : ASIC personnalisés (Marvell, VeriSilicon), IP d'interconnexion (Alphawave, BlueCheetah), usines d'assemblage avancé pour puces (Silicon Box, valorisée à plus de 10 Mds$), et composants clés comme les NPU ou les CPU RISC-V. Leur stratégie commune consiste à miser sur les composants essentiels aux standards ouverts (comme les chiplets), plutôt que de concurrencer directement les géants comme Nvidia. Cette approche a construit un écosystème discret mais puissant, estimé à plus de 22 milliards de dollars d'actifs liés à l'IA, réparti à travers l'Amérique, l'Asie et l'Europe. Marvell est leur étendard le plus visible, mais loin d'être leur seul atout dans la révolution de l'intelligence artificielle.

marsbitIl y a 37 mins

Après la hausse de 32% de Marvell, une famille chinoise de puces émerge en arrière-plan

marsbitIl y a 37 mins

Le CPU, retour discret au centre de la scène du calcul IA

Ces trois dernières années, l'histoire du calcul IA a été presque entièrement centrée sur les GPU, les CPU étant relégués au rôle de soutien. Cependant, à partir de 2026, ce récit évolue. Alors que l'IA passe de l'entraînement massif de modèles au déploiement à grande échelle d'agents et d'inférences, la coordination, la concurrence et la circulation des données deviennent des goulots d'étranglement critiques. Ces tâches d'orchestration, où les GPU sont moins performants, remettent le CPU au centre en tant que « plan de contrôle » de l'infrastructure IA. Intel illustre cette tendance avec son processeur Xeon 6+, lancé en juin 2026. Fabriqué en procédé 18A, il mise sur une densité extrême avec jusqu'à 288 cœurs éco-efficaces (E-cores), optimisés pour le traitement simultané de milliers de tâches légères typiques des charges de travail des agents IA et de l'inférence. Cette approche « haute densité, haut débit » contraste avec la quête traditionnelle de performances mono-cœur. Cependant, la trajectoire d'Intel n'est pas assurée. Le récit du « retour du CPU » est confronté à plusieurs défis : les solutions intégrées CPU-GPU de NVIDIA, la montée des CPU ARM à haute densité développés en interne par les grands clouds (AWS Graviton, Google Axion, etc.), et la nécessité pour le procédé 18A de rivaliser avec les technologies N2 de TSMC et 2 nm de Samsung. En résumé, le CPU retrouve une place essentielle dans l'écosystème du calcul IA, non pas en rivalisant avec le GPU sur le pic de performance, mais en adressant les nouveaux besoins systémiques d'orchestration. La bataille pour savoir quelle architecture (x86 d'Intel/AMD, ARM des clouds ou solutions intégrées de NVIDIA) dominera cette nouvelle ère reste toutefois ouverte.

marsbitIl y a 1 h

Le CPU, retour discret au centre de la scène du calcul IA

marsbitIl y a 1 h

Trading

Spot
Futures

Articles tendance

Qu'est ce que BITCOIN

Comprendre HarryPotterObamaSonic10Inu (ERC-20) et sa position dans l'espace crypto Ces dernières années, le marché des cryptomonnaies a connu une augmentation de la popularité des monnaies mèmes, suscitant l'intérêt non seulement des traders, mais aussi de ceux qui recherchent un engagement communautaire et une valeur divertissante. Parmi ces jetons uniques, HarryPotterObamaSonic10Inu (ERC-20) est un projet intrigant qui mêle des références culturelles à l'univers des cryptomonnaies. Cet article explore les aspects clés de HarryPotterObamaSonic10Inu, en examinant ses mécanismes, son ethos axé sur la communauté, et son engagement avec le paysage crypto plus large. Qu'est-ce que HarryPotterObamaSonic10Inu (ERC-20) ? Comme son nom l'indique, HarryPotterObamaSonic10Inu est une monnaie mème construite sur la blockchain Ethereum, classée selon la norme ERC-20. Contrairement aux cryptomonnaies traditionnelles qui peuvent mettre l'accent sur l'utilité pratique ou le potentiel d'investissement, ce jeton prospère grâce à sa valeur divertissante et à la force de sa communauté. Le projet vise à favoriser un environnement où des utilisateurs engagés peuvent se rassembler, partager des idées et participer à des activités inspirées par divers phénomènes culturels. Une caractéristique notable de HarryPotterObamaSonic10Inu est son absence de taxe sur les transactions. Cet élément attrayant vise à encourager le trading et l'implication de la communauté, sans frais supplémentaires pouvant décourager les petits traders. L'offre totale de la monnaie est fixée à un milliard de jetons, un chiffre qui marque son intention de maintenir une circulation substantielle au sein de la communauté. Créateur de HarryPotterObamaSonic10Inu (ERC-20) Les origines de HarryPotterObamaSonic10Inu sont quelque peu obscures ; les détails concernant le créateur restent inconnus. Le développement de ce jeton ne comporte pas d'équipe identifiable ou de plan explicite, ce qui n'est pas rare dans le secteur des monnaies mèmes. Au lieu de cela, le projet a émergé de manière organique, son progrès s'appuyant fortement sur l'enthousiasme et la participation de sa communauté. Investisseurs de HarryPotterObamaSonic10Inu (ERC-20) En ce qui concerne les investissements externes et le soutien, HarryPotterObamaSonic10Inu reste également ambigu. Le jeton ne mentionne aucune fondation d'investissement connue ou un soutien organisationnel significatif. Au lieu de cela, le cœur battant du projet est sa communauté de base, qui informe sa croissance et sa durabilité par des actions collectives et un engagement dans l'espace crypto. Comment fonctionne HarryPotterObamaSonic10Inu (ERC-20) ? En tant que monnaie mème, HarryPotterObamaSonic10Inu opère principalement en dehors des cadres traditionnels qui régissent souvent la valeur des actifs. Plusieurs aspects distinctifs définissent comment le projet fonctionne : Transactions sans taxe : Sans frais de taxe sur les transactions, les utilisateurs peuvent acheter et vendre librement le jeton sans se préoccuper de frais cachés. Engagement communautaire : Le projet prospère grâce à l'interaction communautaire, exploitant les plateformes de médias sociaux pour créer du bruit et faciliter l'implication. Les discussions, le partage de contenu et l'engagement sont des éléments cruciaux qui aident à étendre sa portée et à favoriser la loyauté parmi les supporters. Pas d'utilité pratique : Il est important de noter que HarryPotterObamaSonic10Inu n'offre pas d'utilité concrète au sein de l'écosystème financier. Au contraire, il est classé comme un jeton principalement pour des activités de divertissement et communautaires. Référence culturelle : Le jeton intègre habilement des éléments de la culture populaire pour susciter l'intérêt, s'adressant à la fois aux amateurs de mèmes et aux suiveurs de crypto. HarryPotterObamaSonic10Inu illustre comment les monnaies mèmes fonctionnent différemment des projets de cryptomonnaies plus traditionnels, entrant sur le marché en tant que constructions sociales innovantes plutôt qu'actifs utilitaires. Chronologie de HarryPotterObamaSonic10Inu (ERC-20) L'histoire de HarryPotterObamaSonic10Inu est jalonnée de plusieurs étapes notables : Création : Le jeton est né d'un mème viral, captivant l'imagination de nombreux passionnés de crypto. Les dates de création spécifiques ne sont pas disponibles, soulignant son ascension organique. Listing sur les échanges : HarryPotterObamaSonic10Inu a fait son apparition sur divers échanges, permettant un accès et un trading plus faciles par la communauté. Initiatives d'engagement communautaire : Activités en cours visant à améliorer l'interaction communautaire, y compris des concours, des campagnes sur les réseaux sociaux, et la génération de contenu par des fans et des défenseurs. Plans d'expansion futurs : La feuille de route du projet comprend le lancement d'une collection NFT, de marchandises, et d'un site eCommerce lié à ses thèmes culturels, engageant davantage la communauté et tentant d'ajouter plus de dimensions à son écosystème. Points clés concernant HarryPotterObamaSonic10Inu (ERC-20) Nature axée sur la communauté : Le projet privilégie l'apport collectif et la créativité, garantissant que l'implication des utilisateurs est au cœur de son développement. Classification de monnaie mème : Il représente l'apogée de la cryptomonnaie basée sur le divertissement, se distinguant des véhicules d'investissement traditionnels. Pas d'affiliation directe avec Bitcoin : Malgré la similitude dans le nom du ticker, HarryPotterObamaSonic10Inu est distinct et n'a aucun lien avec Bitcoin ou d'autres cryptomonnaies établies. Focus sur la collaboration : HarryPotterObamaSonic10Inu est conçu pour créer un espace de collaboration et de partage d'histoires parmi ses détenteurs, offrant une voie pour la créativité et le lien communautaire. Perspectives d'avenir : L'ambition de s'étendre au-delà de son concept initial vers des NFT et des marchandises dessine un chemin pour le projet afin de potentiellement entrer dans des avenues plus grand public au sein de la culture numérique. Alors que les monnaies mèmes continuent de captiver l'imagination de la communauté des cryptomonnaies, HarryPotterObamaSonic10Inu (ERC-20) se distingue par ses liens culturels et son approche centrée sur la communauté. Bien qu'il ne corresponde pas au modèle typique d'un jeton axé sur l'utilité, son essence réside dans la joie et la camaraderie cultivées parmi ses supporters, soulignant la nature en évolution des cryptomonnaies dans un âge de plus en plus numérique. À mesure que le projet continue de se développer, il sera important de surveiller comment les dynamiques communautaires influencent sa trajectoire dans le paysage toujours changeant de la technologie blockchain.

1.5k vues totalesPublié le 2024.04.01Mis à jour le 2024.12.03

Qu'est ce que BITCOIN

Comment acheter BTC

Bienvenue sur HTX.com ! Nous vous permettons d'acheter Bitcoin (BTC) de manière simple et pratique. Suivez notre guide étape par étape pour commencer votre parcours crypto.Étape 1 : Création de votre compte HTXUtilisez votre adresse e-mail ou votre numéro de téléphone pour ouvrir un compte sur HTX gratuitement. L'inscription se fait en toute simplicité et débloque toutes les fonctionnalités.Créer mon compteÉtape 2 : Choix du mode de paiement (rubrique Acheter des cryptosCarte de crédit/débit : utilisez votre carte Visa ou Mastercard pour acheter instantanément Bitcoin (BTC).Solde :utilisez les fonds du solde de votre compte HTX pour trader en toute simplicité.Prestataire tiers :pour accroître la commodité d'utilisation, nous avons ajouté des modes de paiement populaires tels que Google Pay et Apple Pay.P2P :tradez directement avec d'autres utilisateurs sur HTX.OTC (de gré à gré) : nous offrons des services personnalisés et des taux de change compétitifs aux traders.Étape 3 : stockage de vos Bitcoin (BTC)Après avoir acheté vos Bitcoin (BTC), stockez-les sur votre compte HTX. Vous pouvez également les envoyer ailleurs via un transfert sur la blockchain ou les utiliser pour trader d'autres cryptos.Étape 4 : tradez des Bitcoin (BTC)Tradez facilement Bitcoin (BTC) sur le marché Spot de HTX. Il vous suffit d'accéder à votre compte, de sélectionner la paire de trading, d'exécuter vos trades et de les suivre en temps réel. Nous offrons une expérience conviviale aux débutants comme aux traders chevronnés.

5.3k vues totalesPublié le 2024.12.12Mis à jour le 2026.06.02

Comment acheter BTC

Qu'est ce que $BITCOIN

OR DÉMATÉRIEL ($BITCOIN) : Une Analyse Complète Introduction à OR DÉMATÉRIEL ($BITCOIN) OR DÉMATÉRIEL ($BITCOIN) est un projet basé sur la blockchain opérant sur le réseau Solana, qui vise à combiner les caractéristiques des métaux précieux traditionnels avec l'innovation des technologies décentralisées. Bien qu'il partage un nom avec Bitcoin, souvent appelé “or numérique” en raison de sa perception en tant que réserve de valeur, OR DÉMATÉRIEL est un jeton distinct conçu pour créer un écosystème unique au sein du paysage Web3. Son objectif est de se positionner comme un actif numérique alternatif viable, bien que les spécificités concernant ses applications et fonctionnalités soient encore en développement. Qu'est-ce qu'OR DÉMATÉRIEL ($BITCOIN) ? OR DÉMATÉRIEL ($BITCOIN) est un jeton de cryptomonnaie explicitement conçu pour une utilisation sur la blockchain Solana. Contrairement à Bitcoin, qui joue un rôle de stockage de valeur largement reconnu, ce jeton semble se concentrer sur des applications et caractéristiques plus larges. Les aspects notables incluent : Infrastructure Blockchain : Le jeton est construit sur la blockchain Solana, connue pour sa capacité à gérer des transactions rapides et peu coûteuses. Dynamique de l'Offre : OR DÉMATÉRIEL a une offre maximale plafonnée à 100 quadrillions de jetons (100P $BITCOIN), bien que les détails concernant son offre en circulation soient actuellement non divulgués. Utilité : Bien que les fonctionnalités précises ne soient pas explicitement décrites, il y a des indications que le jeton pourrait être utilisé pour diverses applications, impliquant potentiellement des applications décentralisées (dApps) ou des stratégies de tokenisation d'actifs. Qui est le Créateur d'OR DÉMATÉRIEL ($BITCOIN) ? À l'heure actuelle, l'identité des créateurs et de l'équipe de développement derrière OR DÉMATÉRIEL ($BITCOIN) reste inconnue. Cette situation est typique parmi de nombreux projets innovants dans l'espace blockchain, en particulier ceux alignés avec la finance décentralisée et les phénomènes de meme coin. Bien qu'une telle anonymité puisse favoriser une culture axée sur la communauté, elle intensifie les préoccupations concernant la gouvernance et la responsabilité. Qui sont les Investisseurs d'OR DÉMATÉRIEL ($BITCOIN) ? Les informations disponibles indiquent qu'OR DÉMATÉRIEL ($BITCOIN) n'a pas de bailleurs de fonds institutionnels connus ou d'investissements en capital-risque notables. Le projet semble fonctionner sur un modèle peer-to-peer axé sur le soutien et l'adoption de la communauté plutôt que sur des voies de financement traditionnelles. Son activité et sa liquidité se situent principalement sur des échanges décentralisés (DEX), tels que PumpSwap, plutôt que sur des plateformes de trading centralisées établies, soulignant davantage son approche de base. Comment fonctionne OR DÉMATÉRIEL ($BITCOIN) Les mécanismes opérationnels d'OR DÉMATÉRIEL ($BITCOIN) peuvent être élaborés en fonction de sa conception blockchain et des attributs du réseau : Mécanisme de Consensus : En s'appuyant sur le mécanisme de preuve d'historique (PoH) unique de Solana combiné à un modèle de preuve d'enjeu (PoS), le projet assure une validation efficace des transactions contribuant à la haute performance du réseau. Tokenomics : Bien que des mécanismes déflationnistes spécifiques n'aient pas été largement détaillés, l'immense offre maximale de jetons implique qu'elle pourrait répondre à des microtransactions ou à des cas d'utilisation de niche qui restent à définir. Interopérabilité : Il existe un potentiel d'intégration avec l'écosystème plus large de Solana, y compris diverses plateformes de finance décentralisée (DeFi). Cependant, les détails concernant des intégrations spécifiques restent non spécifiés. Chronologie des Événements Clés Voici une chronologie qui met en évidence des jalons significatifs concernant OR DÉMATÉRIEL ($BITCOIN) : 2023 : Le déploiement initial du jeton a lieu sur la blockchain Solana, marqué par son adresse de contrat. 2024 : OR DÉMATÉRIEL gagne en visibilité en devenant disponible à la négociation sur des échanges décentralisés comme PumpSwap, permettant aux utilisateurs de l'échanger contre SOL. 2025 : Le projet connaît une activité de trading sporadique et un intérêt potentiel pour des engagements dirigés par la communauté, bien qu'aucun partenariat notable ou avancée technique n'ait été documenté jusqu'à présent. Analyse Critique Forces Scalabilité : L'infrastructure sous-jacente de Solana prend en charge des volumes de transactions élevés, ce qui pourrait améliorer l'utilité de $BITCOIN dans divers scénarios de transaction. Accessibilité : Le potentiel faible prix de négociation par jeton pourrait attirer les investisseurs de détail, facilitant une participation plus large grâce aux opportunités de propriété fractionnée. Risques Manque de Transparence : L'absence de bailleurs de fonds, de développeurs ou de processus d'audit connus publiquement peut susciter du scepticisme quant à la durabilité et à la fiabilité du projet. Volatilité du Marché : L'activité de trading dépend fortement du comportement spéculatif, ce qui peut entraîner une volatilité des prix significative et une incertitude pour les investisseurs. Conclusion OR DÉMATÉRIEL ($BITCOIN) émerge comme un projet intrigant mais ambigu au sein de l'écosystème Solana en rapide évolution. Bien qu'il tente de tirer parti du récit de “l'or numérique”, son éloignement du rôle établi de Bitcoin en tant que réserve de valeur souligne la nécessité d'une différenciation plus claire de son utilité prévue et de sa structure de gouvernance. L'acceptation et l'adoption futures dépendront probablement de la résolution de l'opacité actuelle et de la définition plus explicite de ses stratégies opérationnelles et économiques. Remarque : Ce rapport englobe des informations synthétisées disponibles jusqu'en octobre 2023, et des développements peuvent avoir eu lieu au-delà de la période de recherche.

83 vues totalesPublié le 2025.05.13Mis à jour le 2025.05.13

Qu'est ce que $BITCOIN

Discussions

Bienvenue dans la Communauté HTX. Ici, vous pouvez vous tenir informé(e) des derniers développements de la plateforme et accéder à des analyses de marché professionnelles. Les opinions des utilisateurs sur le prix de BTC (BTC) sont présentées ci-dessous.

活动图片