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

Question guys, is there anything wrong with deploying your contract

with "imports" at the top? I noticed a lot of contracts include the interfaces or libraries and it turns out to be a 4000 line contract and some just import on top

5 ответов

19 просмотров

those are called flattened, i don't think there is a real gain. If you split the contracts, it's more readable and sometimes is necessary to avoid contract size limits

imports are pretty fair practices, splitting up large codebases into chunks of easily readable files. one benefit of flattening contracts is they're easier to verify and share. regardless, all embedded libraries/files (aka imports) will count towards the 24.576 kb hard limit, it's here to prevent Denial-Of-Service (DOS) attacks. 24.576 kb is your bytecode size limit, not source files. as the contract size increases (reading the code from disk, pre-processing the code, adding data to the Merkle proof) increases drastically as well.

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

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

а через ESC-код ?
Alexey Kulakov
29
30500 за редактор? )
Владимир
47
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
13
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Как передать управляющий символ в открытую через CreateProcess консоль? Собсна, есть процедура: procedure TRedirectThread.WriteData(Data: OEMString); var Written: Cardinal;...
Serjone
6
в JclConsole объявлено так: function CtrlHandler(CtrlType: DWORD): BOOL; stdcall; - где ваше объявление с stdcall? у вас на картинке нет stdcall
Karagy
8
Ребят в СИ можно реализовать ООП?
Николай
33
program test; {$mode delphi} procedure proc(v: int32); overload; begin end; procedure proc(v: int64); overload; begin end; var x: uint64; begin proc(x); end. Уж не знаю...
notme
6
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
Карта сайта