h4x3rotab
h4x3rotab
Good point. Another idea I can come up with is to allow to register "precompiled" contract in the ink environment. This way, on the ink side all the contract interactions...
Oops, I'd better to post the comments to the ink repo
I didn't dig into the ink! chain extension code. So my understanding could be inaccurate. Please correct me if there's anything wrong. There are two problems: 1. How to allow...
> The RMRK pallet is not only accessible to ink via chain-extensions, but can also be directly called ie. via Polkadot.js. Yes. > Pushing the approval logic to the smart...
It's redundant info in the storage. However we can provide a RPC or SubQuery indexer to populate the field better
Fantastic! Thank you for the support. We cannot wait to test running serde_json in ink! 😎
Still confused by the following code: ``` previous_max=0, max=0 for (i=height - 10 to i
Thanks for the correction. Another quest: by assigning 0 to ST, ST will always be 0 when the last block is lying (consider 1,2,3,4,5,6,7,8,9,1), though it will be clipped to...
Thank you for clarification. I’m working on the implementation for BTG testnet :) On Wed, 20 Dec 2017 at 5:38 AM zawy12 wrote: > BTW here is the problem with...
Just came up with another detailed question: ``` maxT=timestamp[height-limit-1] for ( i = height - limit to i < height ) { maxT = max(maxT, timestamp[i]) } ``` If `height`...