Hey there, can anyone please explain in layman terms why an initializer is used instead of a constructor for proxies? To be exact, the constructor is still there and just does not get used. All the initializing work is done by the initializer. Why is that?
May 4, 2021, 12:29 PM
[
"_addTokenToAllTokensEnumeration(tokenId)",
"_beforeTokenTransfer(from, to, tokenId)",
"_beforeTokenTransfer(from, to, tokenId)",
"_mint(to, tokenId)",
"mint(to, tokenId)"
]
"_addTokenToAllTokensEnumeration(tokenId)",
"_beforeTokenTransfer(from, to, tokenId)",
"_beforeTokenTransfer(from, to, tokenId)",
"_mint(to, tokenId)",
"mint(to, tokenId)"
]
May 4, 2021, 1:24 PM