@xoxno/types 1.0.88 → 1.0.89
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.
|
@@ -3,6 +3,12 @@ declare class TokenAssetsDto {
|
|
|
3
3
|
pngUrl: string;
|
|
4
4
|
svgUrl: string;
|
|
5
5
|
}
|
|
6
|
+
export declare class SuiCoinObjectDto {
|
|
7
|
+
objectId: string;
|
|
8
|
+
balance: string;
|
|
9
|
+
digest: string;
|
|
10
|
+
version: string;
|
|
11
|
+
}
|
|
6
12
|
export declare class TokenDto {
|
|
7
13
|
nonce: number;
|
|
8
14
|
identifier: string;
|
|
@@ -17,6 +23,7 @@ export declare class TokenDto {
|
|
|
17
23
|
assets: TokenAssetsDto;
|
|
18
24
|
isAshSupported: boolean;
|
|
19
25
|
weight: number;
|
|
26
|
+
objects?: SuiCoinObjectDto[];
|
|
20
27
|
}
|
|
21
28
|
declare class WalletDto {
|
|
22
29
|
usdValue: number;
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.UserTokenInventoryResponseDto = exports.TokenDto = void 0;
|
|
12
|
+
exports.UserTokenInventoryResponseDto = exports.TokenDto = exports.SuiCoinObjectDto = void 0;
|
|
13
13
|
// DTO Type
|
|
14
14
|
const swagger_1 = require("@nestjs/swagger");
|
|
15
15
|
class TokenAssetsDto {
|
|
@@ -26,6 +26,9 @@ __decorate([
|
|
|
26
26
|
}),
|
|
27
27
|
__metadata("design:type", String)
|
|
28
28
|
], TokenAssetsDto.prototype, "svgUrl", void 0);
|
|
29
|
+
class SuiCoinObjectDto {
|
|
30
|
+
}
|
|
31
|
+
exports.SuiCoinObjectDto = SuiCoinObjectDto;
|
|
29
32
|
class TokenDto {
|
|
30
33
|
}
|
|
31
34
|
exports.TokenDto = TokenDto;
|