Bjarte S. Karlsen

Results 203 comments of Bjarte S. Karlsen

When coding in overflow against flowkit and the emulator I end up with three different logging technologies. flowkit uses a home brewed one, Blockchain uses logrus and flow-emulator uses zerolog....

These are some of the methods from overflow that I personally feel are more suited to be in flowkit: - turn cadence.Value into compact json for printing https://github.com/bjartek/overflow/blob/api/overflow/cadence.go#L90 (see also...

the Deploy command to deploy contracts does not support specifying a relative path to where the flow.json is located as mentioned here https://github.com/bjartek/overflow/issues/9. This means that even if overflow uses...

It would be nice if cadence-docgen was expanded to handle transactions as well. So that the developer can add some words on what is going on in it.

I have commited all of the suggestions will see if I can find time next week to do a more in-debt pass over this. @bluesign I still think there are...

@turbolent any chance you could take a peak at this.

If I have an interface that requires a method and that has a default implementation that appears to not be allowed now. In my GeneircNFT repo https://github.com/bjartek/flow-nfmt/blob/nftv2/contracts/GenericNFT.cdc i tried to...

Totally agree with @SupunS here. If you can say default implement a destructor and destroy things and you forget to override that in your impl it can be bad.

Well lets say the default impl of a destructor is to burn something because it does by default contain anything useful. Then you a dev add some escrow to it...

Any progress here? I still think it is valid to not allow default impl of init/destroy. This feature is sorely needed.