Results 74 comments of Lovesh Harchandani

Hi Paul. I am glad that it's been helpful. I took a glance at the and looks like you have made a lot of good changes in your crate. Thanks...

I found the above two functions at `https://github.com/st4lk/schematics/blob/master/schematics/serialize.py`

Built the image again and I don't see the problem with this new image. I guess it happens because we have several unpinned dependencies (direct and indirect) and some faulty...

Running typescript in a browser isn't practical first convert it to js using `yarn build` and then use the js file in your browser. The project doesn't have a bundler...

A PR with instructions in Readme is much appreciated. You can link to specific sections of [this doc](https://substrate.dev/docs/en/knowledgebase/getting-started/) as well.

Good point. But how would `BlockHash` be available during block execution. It should only be available after extrinsics of the block have been processed (and state changes applied). Or would...

Can you elaborate how? I think you are saying to include the genesis hash in the payload by DID. I can see how that we can implement `Encode` for the...

I see it would somehow know but how exactly, i don't know. Got some pointers in Riot chat, https://github.com/paritytech/substrate/blob/877d79bcebe7728d502c33227c2e4dea0766e22d/bin/node/runtime/src/lib.rs#L553 and https://github.com/paritytech/substrate/blob/877d79bcebe7728d502c33227c2e4dea0766e22d/bin/node/runtime/src/lib.rs#L674 is where CheckGenesis is used within the runtime But...

You can get the genesis hash with `::block_hash(T::BlockNumber::from(0))`. See here https://github.com/docknetwork/dock-substrate/blob/c7f18d2d7ade33ab6f7c18fb1845ee259f3f7ae8/runtime/src/did.rs#L396. I am printing (storing since io_print didn't work) the blockhash here https://github.com/docknetwork/dock-substrate/blob/c7f18d2d7ade33ab6f7c18fb1845ee259f3f7ae8/runtime/src/did.rs#L784. Run with `SKIP_WASM_BUILD=1` flag to print

Hi. If you are connecting to mainnet, you should be using the latest release tag from [here](https://github.com/docknetwork/dock-substrate/releases).