fork – Coin Network News https://coinnetworknews.com If it's coin, it's news. Mon, 09 Oct 2023 21:50:36 +0000 en-US hourly 1 https://wordpress.org/?v=6.4.3 The Big Deal with BitVM: Arbitrary Computation Now Possible on Bitcoin Without a Fork https://coinnetworknews.com/the-big-deal-with-bitvm-arbitrary-computation-now-possible-on-bitcoin-without-a-fork/ https://coinnetworknews.com/the-big-deal-with-bitvm-arbitrary-computation-now-possible-on-bitcoin-without-a-fork/#respond Mon, 09 Oct 2023 21:50:36 +0000 https://coinnetworknews.com/the-big-deal-with-bitvm-arbitrary-computation-now-possible-on-bitcoin-without-a-fork/ ​​Fear the wizards. Not those wizards, real wizards.

Announced today by developer Robin Linus of ZeroSync, an association founded to help scale Bitcoin by using zero-knowledge proofs, BitVM is a proposal that opens very interesting doors for Bitcoin application development going forward. It can enable pretty much any arbitrary computation, and use that computation to enforce what happens to bitcoin on-chain.

It requires no consensus changes to Bitcoin at all. The trick is lifting all of that logic off-chain and being able to challenge a few steps of the computation on-chain if the other party asserts a dishonest outcome. In short, BitVM will bring arbitrary Turing-complete computation, in an enforceable way, to bitcoin itself – today.

The Basics Of Logic Gates

To really grasp the mechanisms behind the proposal, we need to understand a little bit about the physical and logical basis of computation.

Everyone knows that under the hood your computer is just passing around individual 1s and 0s to do everything it does, but how does that work? What does it mean? Every single chip in your computer at its core is composed of millions or billions of individual things called logic gates.

These little devices take either one or two “bits” of information, a 1 or a 0, and perform a simple logical operation on them to produce either a 1 or a 0 as an output, which then feeds into the next logic gate.

There are many different types of logic gates, some that just take a single bit and put out the same number fed into it (the buffer gate). Others take a single bit and output the opposite value it receives (the NOT gate, or an inverter). Some take two bits, and output a 1 if both input bits are 1, with any other combination outputting a 0 (the AND gate). Lastly, at least here today in this list of examples, is a gate that takes two bits and outputs 0 if both inputs are 1s, and outputs 1 for all other bit combinations (the NAND gate).

The NAND truth table from 

The interesting thing about a NAND gate is you can build any other type of logic gate from just NAND gates. It definitely won’t be as efficient and just making a special purpose version of the other gate, but it will get the job done. So, given that you can build any logic gate out of NAND gates, you can build circuits for any arbitrary computation out of NAND gates.

Building NAND on Bitcoin

Now how do you build a NAND gate with existing Bitcoin script? Hashlocks and two other op codes you are probably unfamiliar with: OP_BOOLAND and OP_NOT.

First, let’s look at the hashlocks. You create a branching script that can be spent one of two ways, revealing the preimage to hashlock A, or revealing the preimage to hashlock B. Path A would put the number 1 on the stack, and Path B would put the number 0.

This allows you to “unlock” a bit to be used as an input to the NAND gate we are building by providing the preimage to the hashlock. You can only fulfill the script with one or the other, not both, and there are reasons we will get into shortly for this. This simple primitive is just there to allow users to commit to single bits at a time for use in a NAND gate script.

Now think back to what a NAND gate is, it takes two bits and outputs one. If the input bits are both 1s, then the output has to be a zero. If the input bits are any other combination the output is a 1. You can use the two-path hashlock trick above to commit to both inputs, as well as the output, you just need a way to verify the output is correct. This is where OP_BOOLAND and OP_NOT come in.

After you have picked which values to assign as inputs, and which output value to verify it against, you can take advantage of a neat trick. OP_BOOLAND does the exact opposite that NAND does, if both inputs are 1s, the output is 1. Everything else outputs 0. OP_NOT takes whatever value is input and reverses it, a 1 becomes a zero and vice versa. This allows you to take the two input values and actually do a NAND operation on them on the scripting stack. You can then verify the output of that against the asserted output committed to with the hashlock trick using OP_EQUALVERIFY. The script will not pass evaluation if the actual NAND operation output created on the stack doesn’t match the output the user claims it will produce.

You now have a NAND gate implemented in Bitcoin script, in a way that actually enforces with Bitcoin script the virtual NAND gate operates correctly.

Where the Arbitrary Computation Comes In

So what can you do now that you can make a single NAND gate in Bitcoin script? You can create an entire tapleaf tree that covers every single step of any arbitrary computation, just like actual logic gates do to make computer processors.

To accomplish complex computation, people put logic gates together in series, so that once you feed the initial inputs into the first gates, the output of each of them feeds right into another gate as input. The same thing is accomplished here by tying hashlocks together appropriately between gates. I.e. if one gate script has a choice between the preimages for value C1 or C2 as an output, the next gate in the series uses those same hashlock values in the matching input. This way the only way for someone to lie about the result from the previous gate is to reveal the other C hashlock. We can use this for a penalty mechanism.

Both users take whatever computation they want to engage in, and break it down into a circuit of only NAND gates doing the computation gate by gate. They then take and encode every individual gate in the circuit, with the appropriate hashlock choices for each circuit step, and encode it into a tapleaf tree that a single UTXO can be locked to. There is one version of the tree for the user trying to prove they are executing the program correctly, and one version for the person verifying it is executed correctly. Now what they do is pre-sign a series of transactions for a challenge and response game that can be executed on-chain. Ideally the entire computation is run through and verified off-chain, and users cooperatively settle it by spending the funds together to the appropriate person based on the computations outcome. If the prover stops cooperating however, the verifier can challenge them on-chain.

Step one is loading money into the scheme. One script path will let the prover just claim the money unilaterally after a timelock. The next script path will let the verifier instantly claim the money if they can show the preimages to both the possible values for any input or output of the current gate. The next script path will allow the verifier to force the prover to execute any specific gate contract on-chain (i.e. the one right after they stopped cooperating with off-chain). This path requires the verifier to release another hashlock preimage that only they have, functioning as a lock for each gate challenge to the prover. This guarantees the prover can only execute that specific gate. The verifier’s pre-signed transaction for that path will spend it to a script with the following script paths: the verifier takes the coins after a timelock, or the prover executes the gate and spends the coin back into a script like the first one, the prover can claim the money after a timelock, the verifier can claim it instantly if showing both preimages to any single hashlock pair, or the verifier can challenge the prover again.

Only a few rounds of this scheme will guarantee the contract settles correctly. Either the verifier runs out of pre-signed transactions to keep challenging the prover, because the prover keeps demonstrating correct execution of each gate, and the prover claims the fund; or, the prover does not respond to a challenge because it would allow them to be penalized, and the verifier claims the funds after a timelock; or the prover actually does execute a gate incorrectly on-chain and the verifier claims the funds immediately. Ideally everything happens off-chain and is settled cooperatively, but if cooperation fails there literally is no other outcome after just a few rounds on-chain than the contract settling correctly.

Where to Go From Here

Certainly, a proposal of this magnitude will be discussed for some weeks going forward.

The amount of data needed to be processed and generated is enormous. We are talking taptrees with leaves numbered in the billions, and pre-signed transactions to go with them all at least a few hops long to ensure accurate settlement.

The off-chain data management cost is absolutely massive.

The other big limitation is this scheme will only work with two parties, one playing the role of proving correct execution, and the second playing the role of verifying it.

While it is possible future research finds a way to generalize this to more participants, I at least see no clear path to accomplishing that. Also, even addressing that particular problem, I see no way to get around that this is an interactive protocol requiring participation at all times by all participants in the cooperative case.

Nonetheless, this is a very interesting demonstration of how complex programs can be used to enforce conditional control over Bitcoin. There is definitely room for optimization in terms of how much logic can be packed into a single leaf script, or what can be done with different op codes to make the entire scheme more efficient. Simple deconstruction to the basic operations and game theoretic balances can enforce any arbitrary computation using Bitcoin.

Truly the creation of wizards. 

Source link

]]>
https://coinnetworknews.com/the-big-deal-with-bitvm-arbitrary-computation-now-possible-on-bitcoin-without-a-fork/feed/ 0
Bitcoin Cash (BCH) Jumps 6% Ahead of ‘CashTokens’ Fork https://coinnetworknews.com/bitcoin-cash-bch-jumps-6-ahead-of-cashtokens-fork/ https://coinnetworknews.com/bitcoin-cash-bch-jumps-6-ahead-of-cashtokens-fork/#respond Mon, 15 May 2023 08:09:48 +0000 https://coinnetworknews.com/bitcoin-cash-bch-jumps-6-ahead-of-cashtokens-fork/

Other proposed improvements already locked in include smaller transaction sizes – which help speed up transactional times – and smart contracts functionality that could allow Bitcoin Cash-based applications built that offer recurring payments, derivatives trading, and crowdfunding opportunities, among other uses, to Bitcoin Cash users.

Source link

]]>
https://coinnetworknews.com/bitcoin-cash-bch-jumps-6-ahead-of-cashtokens-fork/feed/ 0
Meet ‘Dencun.’ Ethereum Developers Are Already Planning Next Hard Fork https://coinnetworknews.com/meet-dencun-ethereum-developers-are-already-planning-next-hard-fork/ https://coinnetworknews.com/meet-dencun-ethereum-developers-are-already-planning-next-hard-fork/#respond Thu, 11 May 2023 18:18:48 +0000 https://coinnetworknews.com/meet-dencun-ethereum-developers-are-already-planning-next-hard-fork/

Tim Beiko, the protocol support lead at the Ethereum Foundation, who conducts these bi-monthly meetings, opened the meeting with, “I’ll assume that, by default, we sort of keep this scope for Cancun and if anybody wants to change it going forward, just put something in the agenda.” (Dencun doesn’t exactly roll off the tongue, and the developers themselves sometimes just say “Cancun.”)

Source link

]]>
https://coinnetworknews.com/meet-dencun-ethereum-developers-are-already-planning-next-hard-fork/feed/ 0
FTX considers reboot, Ethereum’s fork goes live and OpenAI news https://coinnetworknews.com/ftx-considers-reboot-ethereums-fork-goes-live-and-openai-news/ https://coinnetworknews.com/ftx-considers-reboot-ethereums-fork-goes-live-and-openai-news/#respond Sat, 15 Apr 2023 22:02:22 +0000 https://coinnetworknews.com/ftx-considers-reboot-ethereums-fork-goes-live-and-openai-news/

Top Stories This Week

Ethereum’s Shapella hard fork executed on mainnet

The Ethereum blockchain’s mainnet, also referred to as the Beacon Chain, implemented the Shapella hard fork on April 12. The upgrade made fund withdrawals possible for those who have staked the network’s Ether (ETH) asset. Within the first hour of the hard fork, a total of 12,859 Ether were unlocked in 4,333 withdrawals, according to Ethereum block explorer beaconchai.in. Nearly a day after the upgrade, ETH surpassed the $2,000 price point.

FTX has recovered $7.3B in assets, will consider rebooting exchange

A comeback for FTX is on the table, according to the legal team of the bankrupted crypto exchange. In an April 12 hearing, FTX’s lawyers said the company had already recovered about $7.3 billion in liquid assets and was considering restarting its crypto exchange operations in the second quarter of 2024, suggesting a reboot as early as April. After the news broke, FTX token (FTT) surged over 112%. Meanwhile in Europe, a Swiss court approved the sale of the firm’s European operations.

OpenAI finds fresh support from Japan amid global country-wide bans

Japan is interested in potentially using technology from artificial intelligence (AI) outfit OpenAI — the creator of chatbot ChatGPT — depending on the resolution of issues relating to cybersecurity and privacy. The interest was expressed by Japan’s chief cabinet secretary, Hirokazu Matsuno. Sam Altman, OpenAI’s CEO, aims to work with Japan to build technology for the country. OpenAI has faced opposition from multiple countries, however. The artificial intelligence race has also accelerated this week with Amazon, Alibaba and Twitter working on their own AI initiatives.

Read also


Features

South Korea’s unique and amazing crypto universe


Features

Lushsux: A decade of ass-whoopin’ and skullduggery in a single NFT 

Twitter to launch crypto and stock trading in partnership with eToro

Twitter is reportedly planning to introduce a new feature that lets users trade cryptocurrencies and stocks. The feature will allow users to browse market charts for a wider variety of financial instruments, as well as purchase or sell crypto and other assets through Twitter’s partner fintech firm, eToro. Musk had earlier floated the idea of making Twitter a “super app,” offering users access to several online services in one place.

Mastercard launches NFT-gated musician accelerator program

Mastercard is one of several traditional finance companies that have ventured into the Web3 arena in recent years. Most recently, on April 12, the company announced its new artist accelerator program with a Web3 twist: The program is NFT-gated and, therefore, only accessible to holders of its Mastercard Music Pass NFT. The NFT is limited-edition and free until the end of the month for both musicians and fans, while the program was created in partnership with Polygon.

Winners and Losers

At the end of the week, Bitcoin (BTC) is at $30,439, Ether (ETH) at $2,105 and XRP at $0.52. The total market cap is at $1.28 trillion, according to CoinMarketCap.

Among the biggest 100 cryptocurrencies, the top three altcoin gainers of the week are Injective (INJ) at 54.92%, WOO Network (WOO) at 46.91% and Arbitrum (ARB) at 42.04%.  

The top three altcoin losers of the week are Enjin Coin (ENJ) at -6.49%, Basic Attention Token (BAT) at -2.89% and BitTorrent New (BTT) at -1.19%.

For more info on crypto prices, make sure to read Cointelegraph’s market analysis.

Read also


Features

Best and worst countries for crypto taxes — plus crypto tax tips


Features

From Director of the United States Mint to the Very First Bitcoin IRA Customer

Most Memorable Quotations

“If we want a strong U.S. dollar globally, a U.S. dollar stablecoin is a way to see that happen.”

Denelle Dixon, CEO of the Stellar Development Foundation

“Bitcoin is a gambling token, and it doesn’t have any intrinsic value.”

Warren Buffett, CEO of Berkshire Hathaway

“There is a very natural tendency to borrow traditional financial industry regulations to apply to crypto. Crypto is different from banks and traditional financial industries.”

Changpeng Zhao, CEO of Binance

“[NFT warranties] will provide a sense of security and trust, which will encourage more non-native crypto users to join the Web3 space with minimal risk.”

George Basiladze, CEO of Wert

“The road of innovation and technological change has never been smooth sailing.”

Paul Chan, financial secretary of Hong Kong

“There is no difference in privacy or surveillance whether you are using your Visa card or a CBDC.”

Aaron Klein, former chief economist of the U.S. Senate Banking Committee

Prediction of the Week 

Bitcoin price spikes above $31K as Ethereum gains spark ‘altseason’ calls

Bitcoin enjoyed some positive action this week, poking through the $31,000 price level, according to Cointelegraph’s BTC price index. Michaël van de Poppe, CEO and founder of trading firm Eight, pointed to a few price points of potential interest.

“Bitcoin looks strong, but will have some shallow corrections in an upward trend,” he noted via an April 14 tweet. “I’ve marked $31.7-32K as important resistance point.”

“However, $25K was the level everyone wanted to buy. This will probably shift to $28.5K, and then nobody buys. I’d prefer to focus on $29.7K,” van de Poppe added.

The Ethereum blockchain’s native asset, ETH, also enjoyed some positive price action during the week. Excitement at the potential prospect of some form of altseason was expressed in the crypto community this week.

FUD of the Week 

Hacker mints 1 quadrillion yUSDT after exploiting old Yearn.finance contract

A hacker exploited an old contract from Yearn Finance, creating a massive amount of the stablecoin yUSDT tokens, according to blockchain security firm PeckShield. The hacker swapped the yUSDT to other stablecoins, allowing them to take hold of $11.6 million worth of stablecoins. At least 1,000 Ether ($2 million) has been transferred to the crypto mixer Tornado Cash.

Crypto exchange Bitrue suffers $23M hack due to hot wallet exploit

Almost $23 million was pilfered from centralized crypto exchange Bitrue due to an exploit. The outfit saw its hot wallet hacked but was able to limit the damage after swiftly jumping into action. The apprehended sum totals less than 5% of funds on the exchange, and the outfit has suspended withdrawals while performing an investigation, with withdrawals planned for resumption on April 18. The hack did not affect the platform’s other wallets, according to Bitrue. “All identified users who are affected by this incident will be compensated in full,” the exchange also noted.

US court issues summons to Tron’s Justin Sun, threatens default judgment if no response

A United States court has issued a summons to Tron founder Justin Sun’s Singapore address in connection to a Securities and Exchange Commission (SEC) civil case. In March, the SEC filed a civil lawsuit against Sun, the Tron Foundation, the BitTorrent Foundation and Rainberry over the “orchestration of the unregistered offer and sale, manipulative trading, and unlawful touting” of Tron TRX as a crypto asset security. Sun will face “judgment by default” if he does not get in touch with SEC attorney Adam Gottlieb within a certain time window.

Best Cointelegraph Features

ZK-rollups are ‘the endgame’ for scaling blockchains: Polygon Miden founder

He got his start in ZK-rollups after Vitalik Buterin saw his work on Eth Research — now he’s heading up Polygon’s game-changing ZK project Miden.

Why join a blockchain gaming guild? Fun, profit and create better games

You can help create better blockchain games by joining a gaming guild… and have some fun, too.

Pro-XRP lawyer John Deaton ‘10x more into BTC, 4x more into ETH’: Hall of Flame

Former aspiring rapper and pro-XRP lawyer John Deaton predicts XRP will top its all-time high if Ripple wins the SEC lawsuit.

Editorial Staff

Cointelegraph Magazine writers and reporters contributed to this article.

Source link

]]>
https://coinnetworknews.com/ftx-considers-reboot-ethereums-fork-goes-live-and-openai-news/feed/ 0
Liquid Staking Protocols See Increase in Monthly ETH Deposits Despite Withdrawals Post-Shapella Hard Fork – Defi Bitcoin News https://coinnetworknews.com/liquid-staking-protocols-see-increase-in-monthly-eth-deposits-despite-withdrawals-post-shapella-hard-fork-defi-bitcoin-news/ https://coinnetworknews.com/liquid-staking-protocols-see-increase-in-monthly-eth-deposits-despite-withdrawals-post-shapella-hard-fork-defi-bitcoin-news/#respond Sat, 15 Apr 2023 16:35:32 +0000 https://coinnetworknews.com/liquid-staking-protocols-see-increase-in-monthly-eth-deposits-despite-withdrawals-post-shapella-hard-fork-defi-bitcoin-news/

Following the Shapella hard fork on April 12, 2023, approximately 332,368 ether, valued at around $699 million, has been withdrawn. Despite these withdrawals, liquid staking protocols like Lido, Rocketpool, and others have experienced an increase in ether deposits over the last 30 days. Since March 14, a total of 281,498 ether worth $592 million have been added to these protocols.

TVL in Staked Ether Accounts for Over 30% of Defi’s Locked Value, With Lido Leading the Pack

As of April 15, 2023, there’s $53.68 billion total value locked (TVL) across various decentralized finance (defi) protocols. Around $16.96 billion or 31% of today’s defi TVL is in staked ether. Lido’s TVL stands at approximately $12.74 billion, accounting for 23.74% of defi’s locked value. The rising price of ethereum (ETH), above the $2,100 per unit range, along with deposits into ETH-based liquid staking protocols have contributed to an increase in value for these platforms.

For instance, Lido’s TVL has grown by 18.02% over the past 30 days; Coinbase’s liquid staking protocol has risen by 16.51% within the same period. Rocketpool’s TVL has surged by 22.48%, while Stakewise has expanded by 15.83%. Archive data from March 14, 2023, shows that 7,749,372 ETH were locked in liquid staking platforms; as of April 15, that number is up to 8,030,870 ETH – an addition of 281,498 ether in just one month.

Simultaneously, since the Shapella hard fork integration, a total of 332,368 ether has been withdrawn from the validator queue. Current pending withdrawals account for about 1.48 million ether worth of funds. The annual percentage rate (APR) for staking ETH currently sits at around 4.98% today. Presently, the Beacon chain contract holds 18,386,887 ETH, valued at $38.67 billion.

Approximately 81% of ETH validators have updated their withdrawal addresses, while 18.5% have not, as per Nansen statistics. The three entities with the highest number of withdrawals are Kraken, Binance, and Coinbase. It is speculated that Kraken and Coinbase have initiated a large portion of these withdrawals due to issues with U.S. regulators concerning liquid staking protocols.

What do you think the future holds for liquid staking protocols? Will their growth continue or will regulatory concerns and market volatility impact their popularity in the months to come? Share your thoughts in the comments section below.

Jamie Redman

Jamie Redman is the News Lead at Bitcoin.com News and a financial tech journalist living in Florida. Redman has been an active member of the cryptocurrency community since 2011. He has a passion for Bitcoin, open-source code, and decentralized applications. Since September 2015, Redman has written more than 6,000 articles for Bitcoin.com News about the disruptive protocols emerging today.




Image Credits: Shutterstock, Pixabay, Wiki Commons

Disclaimer: This article is for informational purposes only. It is not a direct offer or solicitation of an offer to buy or sell, or a recommendation or endorsement of any products, services, or companies. Bitcoin.com does not provide investment, tax, legal, or accounting advice. Neither the company nor the author is responsible, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with the use of or reliance on any content, goods or services mentioned in this article.



Source link

]]>
https://coinnetworknews.com/liquid-staking-protocols-see-increase-in-monthly-eth-deposits-despite-withdrawals-post-shapella-hard-fork-defi-bitcoin-news/feed/ 0
Major Cryptos Remain Unstirred by Inflation Data, Ethereum Shanghai Fork https://coinnetworknews.com/major-cryptos-remain-unstirred-by-inflation-data-ethereum-shanghai-fork/ https://coinnetworknews.com/major-cryptos-remain-unstirred-by-inflation-data-ethereum-shanghai-fork/#respond Thu, 13 Apr 2023 02:08:23 +0000 https://coinnetworknews.com/major-cryptos-remain-unstirred-by-inflation-data-ethereum-shanghai-fork/

Bitcoin, the largest cryptocurrency by market capitalization, was recently trading at about $29,900, down the better part of a percentage point over the past 24 hours. Ether, the second largest crypto in market value, was hovering around $1,905, up almost a percentage point. Many investors had been looking for both cryptos to react more strongly to Wednesday’s events, particularly the Ethereum “hard fork,” a continuation of the platform’s transformation from a proof-of-work to a faster, more efficient proof-of-stake protocol.

Source link

]]>
https://coinnetworknews.com/major-cryptos-remain-unstirred-by-inflation-data-ethereum-shanghai-fork/feed/ 0
Ethereum’s Shapella hard fork executed on mainnet https://coinnetworknews.com/ethereums-shapella-hard-fork-executed-on-mainnet/ https://coinnetworknews.com/ethereums-shapella-hard-fork-executed-on-mainnet/#respond Wed, 12 Apr 2023 22:46:24 +0000 https://coinnetworknews.com/ethereums-shapella-hard-fork-executed-on-mainnet/

The Shapella hard fork has officially been executed on the Ethereum Mainnet— meaning that Ethereum validators can finally withdraw their staked Ether (ETH) from the Beacon Chain.

The long-awaited upgrade took effect at 10:27 PM UTC on April 12.

Through Ethereum Investment Proposal EIP-4895, staked ETH was pushed from the Beacon Chain to the Ethereum Virtual Machine (EVM) otherwise known as the execution layer, making withdrawals possible.

It is the most significant upgrade since The Merge on Sept. 15 and it moves Ethereum one step closer towards a fully functional proof-of-stake system.

The hard fork allows for partial and full withdrawals of staked ETH, which can theoretically unlock 18.1 million ETH when Shapella is forked, currently equating to over $34.8 billion.

However several mechanisms are in place to prevent a flood of the ETH supply from hitting the market, according to the Ethereum Foundation.