Zaki Manian

Results 33 comments of Zaki Manian

Adding signatures to the block is an important step towards enabling light client applications and portability of state across blockchains. In the light client version, presenting a signed block hash...

I've encountered this as a challenge in writing chaincode. For most applications protocols, I've been experimenting treating an array of len(0) as the equivalent to "key not found" has been...

I was able to build and use on an m1 Mac with `CGO_ENABLED=1 GOARCH=amd64 make build` and then `cp build/terrad ~/go/bin`. For some reason, `CGO_ENABLED=1 GOARCH=amd64 make install` does not...

http://34.123.30.100:1317/ and http://34.123.30.100:26657 are new versions. IBC does not work against stargate-3 but we are expecting a new stargate network by Oct 13th with a working IBC.

Go Regex's have bad worst case performance compared to engines in other languages. https://github.com/golang/go/issues/11646 But I was thinking a glob matcher might be a good reduced functionality subset. https://github.com/gobwas/glob I...

One thing related to this that pops into my head is that in ICS20 transaction the "memo" is set by the relayer and not the "sender". Exchanges that use "memo"...

WASM should enable bastion-rs to offer something very similar to Erlang in terms of being able to distribute both code and data to distributed processes. Erlang was designed to make...

Yeah, I think the idea was executing WASM functions via the bastion runtime.

This is msg pack library looks really nice and has a good example. https://github.com/3Hren/msgpack-rust

What part of the protocol did want switched over the msgpack? The (nonce, payload) part?