Dan Lynch
Dan Lynch
- [ ] #258 https://github.com/osmosis-labs/osmojs/blob/bacb2fc322abc3d438581f5dce049f5ae467059d/packages/osmojs/src/codegen/cosmos/client.ts
- [ ] #382 - [ ] #383
- rename `packages/test` to `packages/starship` - name test `__tests__` - inside, similar to starship repo, we'll have each test with it's own starship config cc @anmol1696
reference implementations - https://github.com/atmoner/cosmos-websocket
currently the Telescope CLI is very limited. Giving full programmatic access via the JSON would be super ideal cc @clockworkgr
lazy loading of modules so we can allow more efficient bundling and code distributions cc @clockworkgr
it has been reported that `tsc` warnings will not build for now, a solution is to use `babel` with the `typescript` package for an example that works follow this or...
Getting rid of the Long dependency. It’s a fragile implementation and causes various issues in the module system. We can use `BigInt` for the objects these days and accept `bigint...
culprit is `string module_name = 10 [json_name="-", (gogoproto.jsontag) = "-"];` `proto/thorchain/v1/x/thorchain/types/type_tx_out.proto`: ```proto message TxOutItem { string chain = 1 [(gogoproto.casttype) = "gitlab.com/thorchain/thornode/common.Chain"]; string to_address = 2 [(gogoproto.casttype) = "gitlab.com/thorchain/thornode/common.Address"]; string...
In block explorers such as ping.pub, we need to write code that multiplexes versions. [(see example from ping.pub)](https://github.com/ping-pub/explorer/blob/b0eca720e89b6ee2abe05e205c328b6d7eefae3b/src/libs/fetch.js#L97) ```js const getProposalFunction = (sdk_version) => { switch(sdk_version) { case '0.46': return...