Deniz Mert Edincik

Results 311 comments of Deniz Mert Edincik

> this makes it possible for a contract developer to write an application that is designed to work with, say, CryptoKitties with Hats This shouldn't be possible, "CryptoKitties with Hats"...

> Another question that has come up: at the moment this FLIP requires extensions to have the same kind as the type they extend; i.e. all extensions of a resource...

@siddthesquid yeah this is the wrapper approach actually, every extension is wrapping the resource they are extending. Problem here was type system, ex: extended2 will be subtype of base or...

> Cadence does not have any plans to support function overriding Cadence is acting little bit unreliable here in my opinion @dsainati1 ( not telling this to insult anyone, as...

> > Problem here was type system, ex: extended2 will be subtype of base or not ? > > In the FLIP as it is currently, `extended2` would be type...

@dsainati1 I am considering you reference: > Security is a consideration when interacting with other smart contracts. Any external call potentially allows malicious code to be executed. For example, in...

“implemented is expected by users” is tricky concept though. If we say “user” is who is reading the code, in practice there is no difference. I dont think people capable...

Very nice summary @dsainati1, I have few minor things to add for comparison. ### Static model In this model: We cannot extend (modify) methods, but we can add new ones....

For quick fix on "hard crash" , you can try: ```javascript process.on('uncaughtException', (err, origin) => { console.log(err); }); ``` How are the request counts? Any chance hitting the rate limit...

yeah 40 shouldn't be a problem actually, maybe you can try updating the FCL. I remember some exception problems talk before, but it was about http api part mostly.