@ton/ton 15.2.1 → 15.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -118,7 +118,7 @@ export declare class TonClient4 {
|
|
|
118
118
|
used: {
|
|
119
119
|
bits: number;
|
|
120
120
|
cells: number;
|
|
121
|
-
publicCells
|
|
121
|
+
publicCells?: number | undefined;
|
|
122
122
|
};
|
|
123
123
|
} | null;
|
|
124
124
|
};
|
|
@@ -162,7 +162,7 @@ export declare class TonClient4 {
|
|
|
162
162
|
used: {
|
|
163
163
|
bits: number;
|
|
164
164
|
cells: number;
|
|
165
|
-
publicCells
|
|
165
|
+
publicCells?: number | undefined;
|
|
166
166
|
};
|
|
167
167
|
} | null;
|
|
168
168
|
};
|
|
@@ -490,7 +490,7 @@ const storageStatCodec = zod_1.z.object({
|
|
|
490
490
|
used: zod_1.z.object({
|
|
491
491
|
bits: zod_1.z.number(),
|
|
492
492
|
cells: zod_1.z.number(),
|
|
493
|
-
publicCells: zod_1.z.number()
|
|
493
|
+
publicCells: zod_1.z.number().optional()
|
|
494
494
|
})
|
|
495
495
|
});
|
|
496
496
|
const accountCodec = zod_1.z.object({
|