FuelLabs / sway

🌴 Empowering everyone to build reliable and efficient smart contracts.

Home Page:https://fuellabs.github.io/sway

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Better storage namespacing syntax

IGI-111 opened this issue · comments

Instead of using #[namespace()], something like this:

storage {
    abc {
        def {
            a: u64,
        }
    }
    b: u64,
    c: u64,
    d in 0xABCDEF: u64,
}