@xoxno/sdk-js 0.1.350 → 0.1.351
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.
- package/dist/types/user.d.ts +7 -0
- package/package.json +1 -1
package/dist/types/user.d.ts
CHANGED
|
@@ -165,6 +165,12 @@ export type ActiveGuardian = {
|
|
|
165
165
|
address: string;
|
|
166
166
|
serviceUID: string;
|
|
167
167
|
};
|
|
168
|
+
export interface SuiCoinObject {
|
|
169
|
+
objectId: string;
|
|
170
|
+
balance: string;
|
|
171
|
+
digest: string;
|
|
172
|
+
version: string;
|
|
173
|
+
}
|
|
168
174
|
export type EsdtToken = {
|
|
169
175
|
nonce: number;
|
|
170
176
|
identifier: string;
|
|
@@ -179,6 +185,7 @@ export type EsdtToken = {
|
|
|
179
185
|
assets: Assets;
|
|
180
186
|
isAshSupported: boolean;
|
|
181
187
|
weight: number;
|
|
188
|
+
objects?: SuiCoinObject[];
|
|
182
189
|
};
|
|
183
190
|
export type Assets = {
|
|
184
191
|
pngUrl: string;
|