@xoxno/sdk-js 0.1.350 → 0.1.352
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.
|
@@ -437,6 +437,10 @@ export type ActivityData = {
|
|
|
437
437
|
egldValue: number;
|
|
438
438
|
nftInfo: Pick<NftData, 'identifier' | 'collection' | 'name' | 'metadata' | 'url' | 'wasProcessed' | 'media'>;
|
|
439
439
|
collectionInfo: ShortCollectionInfo;
|
|
440
|
+
originalTokenAmount?: string;
|
|
441
|
+
originalTokenAmountShort?: number;
|
|
442
|
+
originalTokenEgldValue?: number;
|
|
443
|
+
originalTokenUsdValue?: number;
|
|
440
444
|
};
|
|
441
445
|
export type ShortCollectionInfo = Pick<ICollectionProfile, 'name' | 'isVerified' | 'isVisible' | 'profile' | 'description'> & {
|
|
442
446
|
collectionSize: number;
|
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;
|