Digital assets have never had their S&P. Until now.
Passive indexing represents over $19 trillion in the US alone.
The largest asset class of the next decade STILL doesn't have a diversified benchmark.
We built it.
40 digital assets. Five sectors. Fully verifiable onchain.
New brand. New site. New era.
What comes next, changes everything.
Welcome to Cryptex Finance.
Gave this video a first pass and can see Moody poured a lot into gas optimization.
Definitely giving this a deeper dive once Iβm done with SettleKit.
Ethereum address β memory address
A memory address is just a number used as an index into a byte array, which has no meaning outside current execution.
So essentially, stack computes, memory packages bytes, and storage persists.
pc as usize vs u32
usize: no brainer for indexing, suitable when building a local interpreter.
u32: needed for serialization, imperative when designing a spec-aligned VM.
The txn processor has 3 major arms that makes execution flow quite seamless.
The txn pool(one arm) records incoming txn and does validation+ordering.
As I study the reth arch more deeply, I will make the execution model diagram I previously shared more elaborate
Mental model >
@VitalikButerin Driving changes/updates that are absolutely necessary but with further experimentations still being carried out in the backend regardless
Attempt to access an element using indexing.
If index > array length, Rust βpanicsβ
Pretty useful safety check to avoid invalid memory access. Diving deeper into error handling over the coming weeks.