Bytecode
EVMपरिभाषा
Bytecode वह low-level machine code है जो Solidity compiler द्वारा generate होता है। यह hexadecimal instructions की एक series है जो Ethereum Virtual Machine (EVM) execute करता है। जब आप contract deploy करते हैं, तो यही bytecode blockchain पर store होता है।
English version
Bytecode is the low-level machine code generated by the Solidity compiler. It is a series of hexadecimal instructions that the Ethereum Virtual Machine (EVM) executes. When you deploy a contract, this bytecode is what gets stored on the blockchain.
Code Example
// Code Solidity original
contract SimpleStorage {
uint256 public value;
function setValue(uint256 _value) public {
value = _value;
}
}
// Devient du bytecode (extrait)
0x608060405234801561001057600080fd5b50...संबंधित पेज
Solingo पर इस concept को practice करें
Bytecode को interactive exercises और integrated IDE के साथ master करें।
मुफ्त में शुरू करें