Dan Lynch

Results 105 issues of Dan Lynch

https://github.com/osmosis-labs/osmosis-frontend/blob/14d384786ba6dbc808153b71e5d7dfab5be696ac/packages/proto-codecs/scripts/get-proto.sh#L24

currently we can successfully [`createBalancerPool`](https://github.com/osmosis-labs/osmojs/blob/66a17fc3bc16a435022ff2c0869912fed65ee023/packages/osmojs/starship/__tests__/pools.test.js#L64C7-L64C95) via proto signing, but not amino. this could maybe be SDK issue, can you create pools via amino encoding? cc @alexanderbez @mattverse @Anmol1696

this could be telescope or SDK amino annotation issue [MsgSubmitProposal](https://github.com/osmosis-labs/cosmos-sdk/blob/4c20864ab72af3fc3d7f0896535c56bbd0046199/proto/cosmos/gov/v1beta1/tx.proto#L33) ``` option (amino.name) = "cosmos-sdk/v1/MsgSubmitProposal"; ``` [MsgVote](https://github.com/osmosis-labs/cosmos-sdk/blob/4c20864ab72af3fc3d7f0896535c56bbd0046199/proto/cosmos/gov/v1beta1/tx.proto#L58) ``` option (amino.name) = "cosmos-sdk/v1/MsgVote"; ``` cc @Anmol1696

- [ ] #46 - [ ] #47 (original issue #42) cc @Anmol1696

https://gist.github.com/daniel-farina/7f213c1d65d6658848fe9e7b9dbed80d#concentrated-liquidity-module-messages maybe @JoseRFelix or @jonator want to take a crack at this? [tests are in starship folder here](https://github.com/osmosis-labs/osmojs/tree/main/packages/osmojs/starship/__tests__), we can help get you guys setup with starship cc @Anmol1696

I think the one diff in the fixture that I see, it's technically still an issue irrespective of this PR. I wanted to get a review, just in case. This...

low priority, since it's mostly for LCD, which is technically deprecated https://github.com/cosmology-tech/telescope/blob/85d83dc66d87ac9cc2890bc30c0b22c2d67d61c1/__fixtures__/osmojs/ibc-go/proto/ibc/applications/fee/v1/query.proto#L36-L39 https://github.com/cosmology-tech/telescope/blob/85d83dc66d87ac9cc2890bc30c0b22c2d67d61c1/__fixtures__/v-next/outputosmojs/ibc/applications/fee/v1/query.lcd.ts#L72-L74 Notice the `_params` thinks it's empty, but it's NOT: ```ts async totalAckFees(_params: QueryTotalAckFeesRequest = {}): Promise {...

```js export function makeTemplateTag(info: ProtoServiceMethodInfo, noLeadingSlash: boolean = true): t.TemplateLiteral { const route = info.url .split('/') .filter(a => a !== '') .map(a => { if (a.startsWith('{')) { // clean weird...

should be! with telescope you can pull the registry from the client generated files and make one massive stargate client we should make a plugin option in telescope to make...