TLOAD TSTORE opcodes implementation

As of version 0.8.24 tload() and tstore() commands are described in the Yul section but do not work inside inline assembly.

Is there any plans to implement them?

Is there any complete list of Yul commands that allowed inside inline assembly?

1 Like

Hello!

The tstore() and tload() opcodes are implemented and available in assembly in the latest release of the Solidity compiler (see v0.8.24). You would need to switch the compiler version to EVM Cancun as they will only be available in the Cancun hard fork.
Switching the target to cancun

2 Likes

Splendid, thank you.
Switching to cancun helped, everything compiles now

1 Like