Encode-Club-Solidity-Foundations / Lesson-01

21 stars 14 forks source link

Is it better to have more contracts or one with all the functions? #7

Open sfemat opened 1 year ago

MatheusDaros commented 1 year ago

Thanks for the question @sfemat Usually you want to make your contracts as small as possible, but not always it is possible to divide it too much. It really depends on what you are trying to do, and how the relevant data is managed inside each part of you contract(s).

holyaustin commented 1 year ago

This is one question I have been yearning to ask.