169 похожих чатов

Hi all, a question about EXTCODESIZE. I thought that if

I deployed the same contract 2 times, they would have the same bytecode and the same extcodesize, but when trying this in Foundry I'm getting different hashes:

address anotherChallengeImpl = address(new MyContract());
address anotherChallengeImpl2 = address(new MyContract());
bytes32 codeHash;

console.log("CodeHash of another Implementations:");
assembly {
codeHash := extcodehash(anotherChallengeImpl)
}
console.logBytes32(codeHash);
assembly {
codeHash := extcodehash(anotherChallengeImpl2)
}
console.logBytes32(codeHash);

Output:

CodeHash of another Implementations:
0x6a8ae1efefa1130954998d656c53df68c351e99fc0e0aed5f976fd3f6dc9514c
0x78848a0409fe43dce452de5122ea366da5768c4e8bfabdc197fb196200dbd0db

Does the bytecode contain something else and my reasoning is wrong?

5 ответов

42 просмотра

did you used the same constructor args ?

Gryphus- Автор вопроса
амин
did you used the same constructor args ?

No constructor args, exactly like in the test snippet I pasted

Gryphus
No constructor args, exactly like in the test snip...

i tried your simple code it's returns the same bytes (size) , but i don't understand Exactly ;as i understood when you deploy a new implementation contract two times with the same logic (code) you get Different byte code size? correct me if i'm wrong

I think both of the transactions need to have the same nonce

are you doing anything in constructor of MyContract?

Похожие вопросы

Обсуждают сегодня

Господа, а что сейчас вообще с рынком труда на делфи происходит? Какова ситуация?
Rꙮman Yankꙮvsky
29
А вообще, что может смущать в самой Julia - бы сказал, что нет единого стандартного подхода по многим моментам, поэтому многое выглядит как "хаки" и произвол. Короче говоря, с...
Viktor G.
2
30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
14
Добрый день! Скажите пожалуйста, а какие программы вы бы рекомендовали написать для того, чтобы научиться управлять памятью? Можно написать динамический массив, можно связный ...
Филипп
7
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Ребят в СИ можно реализовать ООП?
Николай
33
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Карта сайта