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...Discuss·1 likesolidity basics
Favour Ajayefavourajaye.hashnode.dev·Jul 2, 2023Solidity ArraysWhat is an array in solidity? In Solidity, arrays are used to store collections of data of the same type. You can think of an array as a list or a container that can hold multiple values. Here's a simple explanation of arrays in Solidity Declaration...Discuss·10 likessolidity basics
Favour Ajayefavourajaye.hashnode.dev·Jun 30, 2023Understanding contract ownership in solidity and Access control patternsContract ownership and access control patterns are crucial aspects of smart contract design and implementation. They help define who has the authority to perform certain actions within the contract and establish permission-based access control. Cont...Discuss·10 likesSolidity
Favour Ajayefavourajaye.hashnode.dev·Jun 27, 2023Libraries in solidityIn Solidity, a library is a reusable collection of functions and code that can be deployed and used by other contracts. It allows you to separate code and enhance data types. Understanding Libraries in a simpler way Let's explain libraries in a simpl...Discuss·20 likesSolidity
Sunny AkujobiforSmartContract Africasmartcontractafrica.hashnode.dev·Dec 26, 2022Understanding Mapping in Solidity (set, get, delete, iterate and nested mapping)What is Mapping? Creating a Mapping Set, Add, Get, Updat and Delete Mapping Nested Mapping Iterable Mappings What is Mapping? Mapping in solidity is like a hash table containing a Key Type and Value Type used to store data. Mapping are used to ...Discuss·2.0K readssoliditytutorial