Skip to content

Commit 363b330

Browse files
committedMar 3, 2025·
apply useCosmosSDKDec and useEnhancedDecimal
1 parent 240f7ec commit 363b330

File tree

90 files changed

+2811
-1938
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+2811
-1938
lines changed
 

‎.telescope.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"useDeepPartial": true,
4141
"num64": "bigint",
4242
"customTypes": {
43-
"useCosmosSDKDec": false
43+
"useCosmosSDKDec": true
4444
},
4545
"useTelescopeGeneratedType": true,
4646
"autoFixUndefinedEnumDefault": true

‎libs/cosmos-types/src/cosmos/base/v1beta1/coin.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { BinaryReader, BinaryWriter } from "../../../binary";
22
import { DeepPartial } from "../../../helpers";
3+
import { Decimal } from "../../../decimals";
34
/**
45
* Coin defines a token with a denomination and an amount.
56
*
@@ -93,7 +94,7 @@ export const DecCoin = {
9394
writer.uint32(10).string(message.denom);
9495
}
9596
if (message.amount !== "") {
96-
writer.uint32(18).string(message.amount);
97+
writer.uint32(18).string(Decimal.fromUserInput(message.amount, 18).atomics);
9798
}
9899
return writer;
99100
},
@@ -108,7 +109,7 @@ export const DecCoin = {
108109
message.denom = reader.string();
109110
break;
110111
case 2:
111-
message.amount = reader.string();
112+
message.amount = Decimal.fromAtomics(reader.string(), 18).toString();
112113
break;
113114
default:
114115
reader.skipType(tag & 7);
@@ -171,7 +172,7 @@ export const DecProto = {
171172
aminoType: "cosmos-sdk/DecProto",
172173
encode(message: DecProto, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
173174
if (message.dec !== "") {
174-
writer.uint32(10).string(message.dec);
175+
writer.uint32(10).string(Decimal.fromUserInput(message.dec, 18).atomics);
175176
}
176177
return writer;
177178
},
@@ -183,7 +184,7 @@ export const DecProto = {
183184
const tag = reader.uint32();
184185
switch (tag >>> 3) {
185186
case 1:
186-
message.dec = reader.string();
187+
message.dec = Decimal.fromAtomics(reader.string(), 18).toString();
187188
break;
188189
default:
189190
reader.skipType(tag & 7);

0 commit comments

Comments
 (0)
Please sign in to comment.