Yolc is a safe, expressive, fun language for Ethereum, powered by YulDSL/Haskell.

Joined June 2023
32 Photos and videos
The silence is deliberate... Before we come back, here is the recording of the previous talk about Yolc youtube.com/watch?v=4DiRJRIl…

1
48
Yolc For Ethereum retweeted
20 Aug 2025
Echidna is now using hevm, our tool, to perform an awesome combination of symbolic execution and fuzzing. In my view, this is a very cool and exciting way of using hevm as a library: gustavo-grieco.github.io/blo… Thanks to Gustavo Grieco for the amazing work and write-up!
9
45
2,860
2
130
A stunt contract is the one that is in the ERC1967 implementation slot, while the actual logic contract in the fallback contract might be different. Yolc uses this technique to make the contract interactable on Etherscan, e.g. basescan.org/address/0x71D97…

2
110
Pattern matching on locally-declared supported networks:
1
76
Let's try to integrate @aave today.
1
4
84
Done. Still some crafts to deal with.
1
50
The access control part of the contracts is inherently not suitable for fuzzing or invariant testing. Yolc will introduce a type-level ACL (access control list) for the storage APIs: If applied, you will need to supply the necessary "runtime-witness" as an ACL to have write access to the sensitive storage.
1
152
Yolc is born for a different purpose: No: Simple, Easy, Wrong. Yes: Elegant, Coherent, Correct. More on: addressing essential complexity. Lesss on: creating accidental complexity.
2
45
Have you found out why it is a type error? This is its similar solidity code: ```solidity uint256 senderBalance = balances[from]; uint256 receiverBalance = balances[to]; (uint256 newSenderBalance, uint256 newReceiverBalance) = (senderBalance - amount, receiverBalance amount); balances[from] = newSenderBalance; balances[to] = newReceiverBalance; ```
1
189

A short article on "data versioning" and how it catches errors at compile time with two examples. yolc.dev/docs/concepts/data-…
68
A short article on "data versioning" and how it catches errors at compile time with two examples. yolc.dev/docs/concepts/data-…

228
Haskell makes Yolc expressive. A short article on what "Embedded DSL (EDSL) in Haskell" is for Yolc. yolc.dev/docs/concepts/edsl/

1
1
109
Define multi-level hash map at arbitrary storage slot: This is similar to and compatible with Solidity's "mapping (address -> mapping (address -> uint256))".
1
48
Another future benefit of being an embedded DSL is that the same code can be used as indexer logic. This will be an equivalent to "isomorphic client-server-stack": an "isomorphic contract-indexer-stack."
2
1
207