telescope icon indicating copy to clipboard operation
telescope copied to clipboard

A TypeScript Transpiler for Cosmos Protobufs ⚛️

Results 120 telescope issues
Sort by recently updated
recently updated
newest added

### Context: I am generating an amino message for the Gravity Bridge Fee Auction. The message generates, and I can sign/broadcast it just fine. ### Issue: Recently, one of the...

telescope Telescope 1.3.3 ? [cmd] what do you want to do? install ? [pkg] which packages do you want to support? cosmos, cosmos_proto npm WARN config production Use `--omit=dev` instead....

I'm expecting more error or warning tips on console to tell users inappropriate parts in config. Thanks

encoding process of Timestamp array will raise build errors. Just a memo here, not a high priority task for now. ``` repeated google.protobuf.Timestamp dates = 42 ```

run `yarn generate` on latest "@cosmology/proto-parser": "^1.2.1", "@cosmology/telescope": "^1.2.5", Receiving the error `error: pathspec 'replace' did not match any file(s) known to git` Note: switching to '44a6a100a92f2984a760b41b7486fb9000ac670e'. You are in...

In [cosmos-sdk](https://github.com/cosmos/cosmos-sdk/tree/main/proto/cosmos/feegrant), they have proto feegrant in directory proto/cosmos/feegrant. In [aurad](https://github.com/aura-nw/aura/tree/dev/proto/cosmos/feegrant), I write a new type proto feegrant in directory proto/cosmos/feegrant too. When I tried run codegen from telescope, it...

we are encountering this on every transaction on lava network we recently upgrade to cosmos 47 but i can confirm this also happened on 46 snippet of the code causing...

Before Telescope 1.0, the generated messages only contained the object fields that are present in the protobuf `message` declaration. Now, the meta field `typeUrl`/`$typeUrl` is added. This causes issues when...

When using telescope to transpile protobufs on windows OS it is missing the desired output e.g. in my proto directory ``` ├── cosmwasm │ ├── CHANGELOG.md │ ├── LICENSE │...

``` export interface MsgSendAmino { from_address: string; to_address: string; amount: CoinAmino[]; } export interface MsgSendAminoMsg { type: “cosmos-sdk/MsgSend”; value: MsgSendAmino; } ``` Is there a way only keep `MsgSendAmino` be...