@@ -81,6 +81,7 @@ std::map<std::string, Instruction> const solidity::evmasm::c_instructions =
8181 { " CHAINID" , Instruction::CHAINID },
8282 { " SELFBALANCE" , Instruction::SELFBALANCE },
8383 { " BASEFEE" , Instruction::BASEFEE },
84+ { " BLOBHASH" , Instruction::BLOBHASH },
8485 { " POP" , Instruction::POP },
8586 { " MLOAD" , Instruction::MLOAD },
8687 { " MSTORE" , Instruction::MSTORE },
@@ -230,6 +231,7 @@ static std::map<Instruction, InstructionInfo> const c_instructionInfo =
230231 { Instruction::CHAINID, { " CHAINID" , 0 , 0 , 1 , false , Tier::Base } },
231232 { Instruction::SELFBALANCE, { " SELFBALANCE" , 0 , 0 , 1 , false , Tier::Low } },
232233 { Instruction::BASEFEE, { " BASEFEE" , 0 , 0 , 1 , false , Tier::Base } },
234+ { Instruction::BLOBHASH, { " BLOBHASH" , 0 , 1 , 1 , false , Tier::VeryLow } },
233235 { Instruction::POP, { " POP" , 0 , 1 , 0 , false , Tier::Base } },
234236 { Instruction::MLOAD, { " MLOAD" , 0 , 1 , 1 , true , Tier::VeryLow } },
235237 { Instruction::MSTORE, { " MSTORE" , 0 , 2 , 0 , true , Tier::VeryLow } },
0 commit comments