@@ -72,6 +72,7 @@ std::map<std::string, Instruction> const solidity::evmasm::c_instructions =
7272 { " RETURNDATACOPY" , Instruction::RETURNDATACOPY },
7373 { " EXTCODEHASH" , Instruction::EXTCODEHASH },
7474 { " BLOCKHASH" , Instruction::BLOCKHASH },
75+ { " BLOBHASH" , Instruction::BLOBHASH },
7576 { " COINBASE" , Instruction::COINBASE },
7677 { " TIMESTAMP" , Instruction::TIMESTAMP },
7778 { " NUMBER" , Instruction::NUMBER },
@@ -223,6 +224,7 @@ static std::map<Instruction, InstructionInfo> const c_instructionInfo =
223224 { Instruction::RETURNDATACOPY, {" RETURNDATACOPY" , 0 , 3 , 0 , true , Tier::VeryLow } },
224225 { Instruction::EXTCODEHASH, { " EXTCODEHASH" , 0 , 1 , 1 , false , Tier::Balance } },
225226 { Instruction::BLOCKHASH, { " BLOCKHASH" , 0 , 1 , 1 , false , Tier::Ext } },
227+ { Instruction::BLOBHASH, { " BLOBHASH" , 0 , 1 , 1 , false , Tier::VeryLow } },
226228 { Instruction::COINBASE, { " COINBASE" , 0 , 0 , 1 , false , Tier::Base } },
227229 { Instruction::TIMESTAMP, { " TIMESTAMP" , 0 , 0 , 1 , false , Tier::Base } },
228230 { Instruction::NUMBER, { " NUMBER" , 0 , 0 , 1 , false , Tier::Base } },
0 commit comments