cosmology-tech / telescope

A TypeScript Transpiler for Cosmos Protobufs ⚛️
https://cosmology.zone/products/telescope
Apache License 2.0
144 stars 43 forks source link

Fix omit empty for amino #569

Closed Zetazzz closed 5 months ago

Zetazzz commented 7 months ago

Also need to consider how to generate default amino string field:

  string memo = 8;

should be generated to:

memo = memo;

or

memo = memo === "" ? undefined : memo
rasoulMrz commented 7 months ago

Also need to consider how to generate default amino string field:

  string memo = 8;

should be generated to:

memo = memo;

or

memo = memo === "" ? undefined : memo

Always need to omit empty fields, unless we have the annotation stating otherwise. So the second one is the right one for toAmino.