Solidity Series Solidity Programming Language – If-else saksham dixitJan 21, 2024Jan 20, 2024 In Solidity, if-else statement for conditional execution of code. Here’s a basic example: In this example, the checkNumber function takes... Read More
Solidity Series Solidity Programming Language – Constructor saksham dixitJan 20, 2024Jan 19, 2024 At the time when the smart contract is executed -> constructor is the 1st one that is executed. In 1... Read More
Solidity Series Solidity Programming Language – Functions | Getter and Setter Function saksham dixitJan 19, 2024Jan 18, 2024 In Solidity, a programming language for developing smart contracts on the Ethereum blockchain, getter and setter functions are commonly used... Read More
Solidity Series Solidity Programming Language – Strings, Default Value & Constants saksham dixitJan 18, 2024Jan 17, 2024 Strings: String by default store on blockchain. When we are using a string in the function we need to use... Read More
Solidity Series Solidity Programming Language -Pure , View & Simple Function saksham dixitJan 17, 2024Jan 16, 2024 View: Read is allowed but right is not allowed. Pure: Read and Write is not allowed for state variables only... Read More
Solidity Series Solidity Programming Language – State Variable, Local Variable, Global variable saksham dixitJan 16, 2024Jan 19, 2024 (State Variable in solidity | what are stable variable in solidity): These are the variable which is declared inside the... Read More
Solidity Series Solidity Programming Language – Mainnet & Testnet & Metamask details and Installation saksham dixitJan 15, 2024Jan 15, 2024 (Mainnet vs Testnet) & What is metamask? | Metamask Installation Mainnet and Testnet are two different environments used in the... Read More
Solidity Series Solidity Programming Language – Data Types saksham dixitJan 14, 2024Jan 14, 2024 What is the difference between signed and unsigned integers? The key difference between signed and unsigned integers is that signed... Read More
Solidity Series Solidity Programming Language – Smart Contract Compiler saksham dixitJan 14, 2024Jan 14, 2024 This is a video on the smart contract compiler, where compiler components are explained. GITHUB REPO: https://github.com/crytic/evm-opcodes REMIX ID: https://remix.ethereum.org... Read More
Solidity Series Solidity Programming Language – Introduction saksham dixitJan 14, 2024Jan 14, 2024 This is an introductory video on solidity programming language including the syntax of solidity code on remix id. Read More