Daniel

Results 32 comments of Daniel

Maybe this could be implemented with delegates. `Ping` would have a method to register a delegate. `Pong` would call a method on `Ping` to add itself as a delegate. When...

Maybe: - When event `E` is emitted , all listeners of event `E` would be invoked. - Instead of having sub transactions, when a listener is invoked it could enqueue...

Hi @turbolent is there an ETA for the Storage Querying API ?

@dete thank you for the update! Thank you to the team for the continued effort you guys put in. Highly appreciated! 🖖

@turbolent nice work! Could convention over configuration work for contract addresses? Like including the address in the contract file name: `0x01.NbaTS.cdc`

As you're updating `borrow` could a way to `getCapability` on multiple paths be added? To avoid doing this: ```swift var collectionRef = getAccount(address).getCapability(/public/CollectionOne)! .borrow() if collectionRef == nil { collectionRef...

Hey @robmyers, sorry for not making this more clear. I meant `/public/*` to return all matches. In my use-case, I'm looking for a way to fetch info about all NFTs...

Meanwhile, if someone encounters the same issue, an alternate solution to obtain the video mirrored is to change the video configuration transform. ```swift sharedInstance.videoConfiguration.transform = CGAffineTransform(scaleX: -1, y: 1) ```