Levai Ágbàràlevai.hashnode.dev·Jul 26, 2023Mappings in SolidityIntroduction In Solidity, mappings are a way to organize data. They work like a dictionary by assigning a 'key' to the data you want to store, known as the 'value', to make it easy to look up and retrieve the stored data. This guide aims to provide a...30 readsSolidity
Favour Ajayefavourajaye.hashnode.dev·Jul 11, 2023Mappings in solidityWhat is Solidity mapping? In Solidity, a mapping is a data structure that associates a key with a value, similar to a dictionary or hash map in other programming languages. You can think of a mapping as a collection of key-value pairs, where each key...1 like·26 readssolidity basics