Lurk Lab

18 posts

Lurk Lab

Lurk Lab

@LurkLab

Building high-performance privacy @proofbase_xyz, powered by Lurk

Katılım Ocak 2025
3 Takip Edilen647 Takipçiler
Lurk Lab retweetledi
Nicolas Ramsrud
Nicolas Ramsrud@NicolasRamsrud·
great article on optimization in zk re: optimizing zkvms with a custom instruction set we showed with our Lurk 0.5 release that a purpose built language and minimal machine yields a far more efficient prover, upwards of 10x faster in some tests, while also simplifying the pipeline. this is without compilation, purely interpreted Lurk code, and a zkvm that had not yet had any optimization work done. more here: blog.lurk-lab.com/posts/perf-202… we are working on the next iteration of this work, Lurk 2.0, that includes memoization and a compilation pass that optimizes the DAG of reduction into an optimal series of lookups prior to proof generation. This gets us closer to achieving optimal performance and separates the semantic specification of what computation ought to happen from the operational details of how it is proven. This work was recently submitted to the Journal of Functional Programming and will be available soon. its not clear yet what this will provide in performance, but it could be an order of mag or more. (and thats on Plonky3/SP1) So yes, custom language, compiler and machine can most definitely yield 100x+ improvement in performance.
Aligned@alignedlayer

x.com/i/article/1965…

English
1
4
20
3.3K
Lurk Lab retweetledi
Porçu Quine
Porçu Quine@porcuquine2·
Here's a snapshot of what we're working on at @LurkLab. This also serves as a snapshot of the kind things coding agents can plausibly accomplish these days.
Porçu Quine tweet media
English
1
1
4
741
Lurk Lab retweetledi
Nicolas Ramsrud
Nicolas Ramsrud@NicolasRamsrud·
----------------------- NEW BLOG POST LurkScript, Concurrent Lurk and LurkOS ----------------------- I have gotten a lot of questions about the application model and execution environment we are developing for @Proofbase_xyz It is unlike anything else out there and has many reasons behind each design decision - JavaScript surface syntax - natively asynchronous language and application model - capability-scoped kernel - content-addressed, queryable resources - functional handlers - domain-specific routing of messages - for isolated private state with permissionless composability LurkOS defines how applications structure state, communicate, and compose safely. blog link below⬇️
English
2
5
18
4.2K
Lurk Lab retweetledi
Nicolas Ramsrud
Nicolas Ramsrud@NicolasRamsrud·
LurkOS: the provable operating system We have been heads-down over the past couple of months, building the future of private, composable, async applications. The result? LurkOS. Not just a zkVM, but a fully programmable execution environment that allows you to spawn independent LurkOS instances as actors, run processes and applications with defined interfaces, message between them and inter-agent, all provably and privately. and the performance isn't too bad either (20k+TPS shown in demo). LurkOS is the execution environment that will run on top of @Proofbase_xyz which provides the trustless message passing layer for trust-gapped LurkOS instances. Soon this will be powered by @SuccinctLabs SP1 for real-time privacy.
English
19
19
120
38.2K
Lurk Lab retweetledi
Nicolas Ramsrud
Nicolas Ramsrud@NicolasRamsrud·
we are quietly shipping, anon sneak peek at LurkOS, our provable operating system sending 100k transactions between actors yes, this is all intra-actor and without proofs, but this is just the start.
English
1
2
22
1.4K
Lurk Lab retweetledi
Nicolas Ramsrud
Nicolas Ramsrud@NicolasRamsrud·
There is something fundamental in this that is not widely understood building stateful proof-based applications over private data is fundamentally different you cannot just wrap your program in zk this requires language level support for operating over and manipulating private state enabling these applications to permissionlessly interact (composability) with each other requires standardized interfaces and data language you need a language build for privacy on a blockchain that is built for it @NoirLang and @aztecnetwork is doing this @0xPolygonMiden is doing this @LurkLab and @Proofbase_xyz is doing this few.
House of ZK@HouseofZK

The @Zk_Hub_Global Opening Keynote 'Privacy: The Missing Link' by Zac Williamson, CEO of Aztec, is now available on the @HouseofZK YouTube: youtube.com/watch?v=lphZP5… @aztecnetwork CEO, @Zac_Aztec, delivered a passionate keynote emphasizing the critical role of privacy in Web3 and the structural limitations of the current internet economy. He convincingly argued that blockchains must evolve beyond transparency-only models and integrate privacy-preserving mechanisms to unlock their full potential 🤝

English
0
5
44
1.8K
Lurk Lab
Lurk Lab@LurkLab·
LurkScript now works well enough to implement the Lurk standard library so far! Our modular design allows the lurk CLI REPL and prover to use the LurkScript CLI frontend to seamlessly add LurkScript support to Lurk. github.com/lurk-lab/lurk/…
English
0
0
3
3K
Lurk Lab retweetledi
Proofbase
Proofbase@proofbase_xyz·
Mass adoption scale privacy will need real-time proving. So we’re partnering with @succinctlabs to build toward that future on Proofbase!
Proofbase tweet media
English
4
3
23
3.3K
Lurk Lab retweetledi
Proofbase
Proofbase@proofbase_xyz·
The future demands privacy that can scale to billions. Introducing Proofbase: the high-performance privacy layer for Ethereum. proofbase.xyz
English
4
8
25
3.8K
Lurk Lab retweetledi
porter
porter@portport255·
@NicolasRamsrud @0xLita Wow, I haven't kept up with Lurk. That's amazing. Okay @LurkLab is going on my study list 🤝
English
1
1
3
756
Lurk Lab retweetledi
Nicolas Ramsrud
Nicolas Ramsrud@NicolasRamsrud·
Lurk does something similar with similar results. All data and code is commitment based, including proof I/O (which is then opened and committed to at each step of computation), so with content-addressed data storage you can generate proofs of computation over arbitrarily sized datasets stored in arbitrary locations. Even private data. Although we use Poseidon to get const sized commitments, this makes me wonder if there is some PCS method to use as a commitment scheme for proofs over large datasets that would perform better than Poseidon.
Alex Evans@alexhevans

The Accidental Computer with @angeris on prover acceleration via DA encodings In short, proofs-of-encoding (such as ZODA) perform much of the work of a code-based PCS, making it cheap to “embed” verifiable computations over data posted to a DA layer

English
5
2
4
2.4K
Lurk Lab retweetledi
Nicolas Ramsrud
Nicolas Ramsrud@NicolasRamsrud·
A little view behind the curtain, anon. You can now write provable JavaScript with Lurk. This shows why Lurk is so powerful. It took just 5 weeks to make it possible to compile JS into a JS representation of Lurk that can either be interpreted in place as JS or passed through Lurk for proving. Onwards to on-boarding millions of devs to ZK.
Porçu Quine@porcuquine2

My LurkScript implementation is now minimally feature-complete. This lets you author arbitrary Lurk programs in a (functional, immutable) subset of JavaScript. It's implemented in TypeScript, and will allow tight integration with the JS ecosystem, toolchain, and web application.

English
5
6
13
15.8K
Lurk Lab
Lurk Lab@LurkLab·
Provable JavaScript? Check. Users can now write programs in JavaScript, compile to LurkScript, evaluate in place or pass through Lurk to generate a proof. Getting ready for that Web2 scale ZK.
Porçu Quine@porcuquine2

My LurkScript implementation is now minimally feature-complete. This lets you author arbitrary Lurk programs in a (functional, immutable) subset of JavaScript. It's implemented in TypeScript, and will allow tight integration with the JS ecosystem, toolchain, and web application.

English
11
2
10
10.2K