HackerTrans
トップ新着トレンドコメント過去質問紹介求人

benaadams

no profile record

投稿

Getting Ethereum Ready for GigaGas

nethermind.io
2 ポイント·投稿者 benaadams·7 か月前·0 コメント

Preparing for the .NET 10 GC

maoni0.medium.com
102 ポイント·投稿者 benaadams·10 か月前·60 コメント

Road to ZK Implementation: Nethermind Client's Path to Proofs

nethermind.io
46 ポイント·投稿者 benaadams·10 か月前·8 コメント

Performance Improvements in .NET 10

devblogs.microsoft.com
192 ポイント·投稿者 benaadams·10 か月前·92 コメント

コメント

benaadams
·7 か月前·議論
AssemblyLoadContext.Unload https://learn.microsoft.com/en-us/dotnet/api/system.runtime....
benaadams
·10 か月前·議論
Zero-knowledge proofs are basically a way to trust code execution without re-running it yourself.

Compile C# to a minimal RISC-V runtime. You run the program once, and instead of shipping all the outputs and logs, you generate a zk proof—a tiny math receipt that says "this execution was correct." Anyone can verify that receipt in milliseconds.

It's a bit like TEEs (Intel SGX, AMD SEV) where you outsource compute to someone else and rely on hardware to prove they ran it faithfully. The difference is zk proofs don’t depend on trusting special chips or vendors - it's just math.

Implications:

* Offload heavy workloads to untrusted machines but still verify correctness

* Lightweight sync and validation in distributed systems

* New trust models for cloud and datacenter compute