HackerTrans
TopNewTrendsCommentsPastAskShowJobs

benaadams

no profile record

Submissions

Getting Ethereum Ready for GigaGas

nethermind.io
2 points·by benaadams·7 mesi fa·0 comments

Preparing for the .NET 10 GC

maoni0.medium.com
102 points·by benaadams·10 mesi fa·60 comments

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

nethermind.io
46 points·by benaadams·10 mesi fa·8 comments

Performance Improvements in .NET 10

devblogs.microsoft.com
192 points·by benaadams·10 mesi fa·92 comments

comments

benaadams
·7 mesi fa·discuss
AssemblyLoadContext.Unload https://learn.microsoft.com/en-us/dotnet/api/system.runtime....
benaadams
·10 mesi fa·discuss
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