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 ответов

37 просмотров

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?

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

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

Коллеги, я тут для личных нужд пошел ставить MQTT сервер, пощупал mosquitto, но ужаснулся отсутствию такой банальности, как HTTP API для посмотреть список топиков. А тут что,...
Maksim Lapshin
13
Всем привет! Имеется функция: function IsValidChar(ch: UTF8Char): Boolean; var i: Integer; ValidChars: AnsiString; begin ValidChars := 'abcdefghijklmnopqrstuvwxyzABCDE...
Евгений
44
#include <stdio.h> #include <stdlib.h> #include <time.h> void mass_first_generate(int mass[5][7]) {     for (int N = 0; N < 5; N++) {         for (int A = 0; A < 7; A++) {   ...
Чувак
6
Всем привет! Решаю 99 OCaml Problems и столкнулся со следующей проблемой (прошу палками не забивать, я OCaml практически не трогал до этого момента): open OUnit2 let create_...
К|/|pи/\/\ 6е3yглbIи
2
https://www.linkedin.com/posts/ugama-benedicta-kelechi-codergirl-103041300_mobiledevelopment-fluttertraining-handsonlearning-activity-7263445699227254784-IdHB?utm_source=share...
CoderGirl
16
Ну вот просто даже давайте вот как. Какой нибудь конкретный кейс, можете в пример привести, где бч работает и приносит прикладную пользу, а не просто что бы было? Не крипту.
Alexander Andreev
22
возможно ли как-то передать в электрон или таури медиа поток с рендера 2д движка? двиг запускается как dll, а дальше надо как-то отправлять рендер кодировать не подходит, зр...
Kyle Nekto
7
Точно, оно. У тебя там имена потоков выставляются?
Александр (Rouse_) Багель
11
Помогите пожалуйста. Делаю систему плагинов. Проблема сейчас в такая: плагины загружаются в основном потоке. FLibHandle := SafeLoadLibrary(FFileName) Но нужно еще выполнить фу...
Илья 🤣
10
объясните пожалуйста, почему функция не работает должным образом? вроде должно брать активное окно сравнивать его размер с размером экрана, и если есть совпадение = true прове...
JF
12
Карта сайта