@numen-crypto/contract 0.17.2 → 0.18.1
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/index.cjs +13 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +101 -72
- package/dist/index.d.ts +101 -72
- package/dist/index.js +13 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -204,16 +204,18 @@ declare const SessionInfoSchema: z.ZodObject<{
|
|
|
204
204
|
}>;
|
|
205
205
|
type SessionInfo = z.infer<typeof SessionInfoSchema>;
|
|
206
206
|
|
|
207
|
-
declare const ASSET_SYMBOLS: readonly ["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"];
|
|
208
|
-
declare const AssetSymbolSchema: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
207
|
+
declare const ASSET_SYMBOLS: readonly ["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"];
|
|
208
|
+
declare const AssetSymbolSchema: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
209
209
|
type AssetSymbol = z.infer<typeof AssetSymbolSchema>;
|
|
210
210
|
declare const DEPOSITABLE_ASSETS: readonly ["USDT", "BTC", "ETH", "BNB", "TRX", "SOL"];
|
|
211
211
|
declare const DepositableAssetSchema: z.ZodEnum<["USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
212
212
|
type DepositableAsset = z.infer<typeof DepositableAssetSchema>;
|
|
213
213
|
declare const TOKEN_ASSET: "NMN";
|
|
214
|
+
declare const BONUS_ASSET: "wNMN";
|
|
214
215
|
declare const FUNDING_ASSET: "USDT";
|
|
215
216
|
declare const ASSET_DECIMALS: {
|
|
216
217
|
readonly NMN: 4;
|
|
218
|
+
readonly wNMN: 4;
|
|
217
219
|
readonly USDT: 2;
|
|
218
220
|
readonly BTC: 8;
|
|
219
221
|
readonly ETH: 8;
|
|
@@ -224,7 +226,7 @@ declare const ASSET_DECIMALS: {
|
|
|
224
226
|
declare const NMN_PRICE_DECIMALS = 8;
|
|
225
227
|
declare function assetDecimals(asset: AssetSymbol): number;
|
|
226
228
|
declare const AssetBalanceSchema: z.ZodObject<{
|
|
227
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
229
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
228
230
|
name: z.ZodString;
|
|
229
231
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
230
232
|
depositable: z.ZodBoolean;
|
|
@@ -233,7 +235,7 @@ declare const AssetBalanceSchema: z.ZodObject<{
|
|
|
233
235
|
usdValue: z.ZodString;
|
|
234
236
|
isZero: z.ZodBoolean;
|
|
235
237
|
}, "strip", z.ZodTypeAny, {
|
|
236
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
238
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
237
239
|
name: string;
|
|
238
240
|
networks: string[];
|
|
239
241
|
depositable: boolean;
|
|
@@ -242,7 +244,7 @@ declare const AssetBalanceSchema: z.ZodObject<{
|
|
|
242
244
|
usdValue: string;
|
|
243
245
|
isZero: boolean;
|
|
244
246
|
}, {
|
|
245
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
247
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
246
248
|
name: string;
|
|
247
249
|
networks: string[];
|
|
248
250
|
depositable: boolean;
|
|
@@ -255,7 +257,7 @@ type AssetBalance = z.infer<typeof AssetBalanceSchema>;
|
|
|
255
257
|
declare const WalletOverviewSchema: z.ZodObject<{
|
|
256
258
|
totalUsd: z.ZodString;
|
|
257
259
|
assets: z.ZodArray<z.ZodObject<{
|
|
258
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
260
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
259
261
|
name: z.ZodString;
|
|
260
262
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
261
263
|
depositable: z.ZodBoolean;
|
|
@@ -264,7 +266,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
|
|
|
264
266
|
usdValue: z.ZodString;
|
|
265
267
|
isZero: z.ZodBoolean;
|
|
266
268
|
}, "strip", z.ZodTypeAny, {
|
|
267
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
269
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
268
270
|
name: string;
|
|
269
271
|
networks: string[];
|
|
270
272
|
depositable: boolean;
|
|
@@ -273,7 +275,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
|
|
|
273
275
|
usdValue: string;
|
|
274
276
|
isZero: boolean;
|
|
275
277
|
}, {
|
|
276
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
278
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
277
279
|
name: string;
|
|
278
280
|
networks: string[];
|
|
279
281
|
depositable: boolean;
|
|
@@ -286,7 +288,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
|
|
|
286
288
|
}, "strip", z.ZodTypeAny, {
|
|
287
289
|
totalUsd: string;
|
|
288
290
|
assets: {
|
|
289
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
291
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
290
292
|
name: string;
|
|
291
293
|
networks: string[];
|
|
292
294
|
depositable: boolean;
|
|
@@ -299,7 +301,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
|
|
|
299
301
|
}, {
|
|
300
302
|
totalUsd: string;
|
|
301
303
|
assets: {
|
|
302
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
304
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
303
305
|
name: string;
|
|
304
306
|
networks: string[];
|
|
305
307
|
depositable: boolean;
|
|
@@ -319,7 +321,7 @@ type TransactionStatus = z.infer<typeof TransactionStatusSchema>;
|
|
|
319
321
|
declare const TransactionSchema: z.ZodObject<{
|
|
320
322
|
id: z.ZodString;
|
|
321
323
|
type: z.ZodEnum<["DEPOSIT", "WITHDRAWAL", "BUY", "SELL", "COMMISSION", "BONUS", "ADJUSTMENT"]>;
|
|
322
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
324
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
323
325
|
amount: z.ZodString;
|
|
324
326
|
price: z.ZodNullable<z.ZodString>;
|
|
325
327
|
quoteAmount: z.ZodNullable<z.ZodString>;
|
|
@@ -331,7 +333,7 @@ declare const TransactionSchema: z.ZodObject<{
|
|
|
331
333
|
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
332
334
|
id: string;
|
|
333
335
|
createdAt: string;
|
|
334
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
336
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
335
337
|
amount: string;
|
|
336
338
|
price: string | null;
|
|
337
339
|
quoteAmount: string | null;
|
|
@@ -341,7 +343,7 @@ declare const TransactionSchema: z.ZodObject<{
|
|
|
341
343
|
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
342
344
|
id: string;
|
|
343
345
|
createdAt: string;
|
|
344
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
346
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
345
347
|
amount: string;
|
|
346
348
|
price: string | null;
|
|
347
349
|
quoteAmount: string | null;
|
|
@@ -786,6 +788,9 @@ declare const PackagesOverviewSchema: z.ZodObject<{
|
|
|
786
788
|
sellIntervalDays: z.ZodNullable<z.ZodNumber>;
|
|
787
789
|
nextSellAt: z.ZodNullable<z.ZodString>;
|
|
788
790
|
balanceUsdt: z.ZodString;
|
|
791
|
+
balanceWnmn: z.ZodString;
|
|
792
|
+
wnmnPackageRate: z.ZodString;
|
|
793
|
+
tokenPrice: z.ZodString;
|
|
789
794
|
}, "strip", z.ZodTypeAny, {
|
|
790
795
|
sellIntervalDays: number | null;
|
|
791
796
|
packages: {
|
|
@@ -814,6 +819,9 @@ declare const PackagesOverviewSchema: z.ZodObject<{
|
|
|
814
819
|
maxPriceUsd: string;
|
|
815
820
|
nextSellAt: string | null;
|
|
816
821
|
balanceUsdt: string;
|
|
822
|
+
balanceWnmn: string;
|
|
823
|
+
wnmnPackageRate: string;
|
|
824
|
+
tokenPrice: string;
|
|
817
825
|
}, {
|
|
818
826
|
sellIntervalDays: number | null;
|
|
819
827
|
packages: {
|
|
@@ -842,6 +850,9 @@ declare const PackagesOverviewSchema: z.ZodObject<{
|
|
|
842
850
|
maxPriceUsd: string;
|
|
843
851
|
nextSellAt: string | null;
|
|
844
852
|
balanceUsdt: string;
|
|
853
|
+
balanceWnmn: string;
|
|
854
|
+
wnmnPackageRate: string;
|
|
855
|
+
tokenPrice: string;
|
|
845
856
|
}>;
|
|
846
857
|
type PackagesOverview = z.infer<typeof PackagesOverviewSchema>;
|
|
847
858
|
|
|
@@ -1003,8 +1014,8 @@ declare const EarningsOverviewSchema: z.ZodObject<{
|
|
|
1003
1014
|
}, "strip", z.ZodTypeAny, {
|
|
1004
1015
|
networkTurnover: string;
|
|
1005
1016
|
affiliateIncome: string;
|
|
1006
|
-
tokenBalance: string;
|
|
1007
1017
|
tokenPrice: string;
|
|
1018
|
+
tokenBalance: string;
|
|
1008
1019
|
tokenValueUsd: string;
|
|
1009
1020
|
rank: {
|
|
1010
1021
|
name: string;
|
|
@@ -1017,8 +1028,8 @@ declare const EarningsOverviewSchema: z.ZodObject<{
|
|
|
1017
1028
|
}, {
|
|
1018
1029
|
networkTurnover: string;
|
|
1019
1030
|
affiliateIncome: string;
|
|
1020
|
-
tokenBalance: string;
|
|
1021
1031
|
tokenPrice: string;
|
|
1032
|
+
tokenBalance: string;
|
|
1022
1033
|
tokenValueUsd: string;
|
|
1023
1034
|
rank: {
|
|
1024
1035
|
name: string;
|
|
@@ -1467,7 +1478,7 @@ declare const WithdrawalStatusSchema: z.ZodEnum<["AWAITING_CONFIRM", "AWAITING_C
|
|
|
1467
1478
|
type WithdrawalStatus = z.infer<typeof WithdrawalStatusSchema>;
|
|
1468
1479
|
declare const WithdrawalSchema: z.ZodObject<{
|
|
1469
1480
|
id: z.ZodString;
|
|
1470
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
1481
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
1471
1482
|
amount: z.ZodString;
|
|
1472
1483
|
fee: z.ZodString;
|
|
1473
1484
|
address: z.ZodString;
|
|
@@ -1477,7 +1488,7 @@ declare const WithdrawalSchema: z.ZodObject<{
|
|
|
1477
1488
|
status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
|
|
1478
1489
|
id: string;
|
|
1479
1490
|
createdAt: string;
|
|
1480
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1491
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1481
1492
|
amount: string;
|
|
1482
1493
|
address: string;
|
|
1483
1494
|
fee: string;
|
|
@@ -1485,7 +1496,7 @@ declare const WithdrawalSchema: z.ZodObject<{
|
|
|
1485
1496
|
status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
|
|
1486
1497
|
id: string;
|
|
1487
1498
|
createdAt: string;
|
|
1488
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1499
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1489
1500
|
amount: string;
|
|
1490
1501
|
address: string;
|
|
1491
1502
|
fee: string;
|
|
@@ -1893,7 +1904,7 @@ declare namespace GetWalletCommand {
|
|
|
1893
1904
|
const ResponseSchema: zod.ZodObject<{
|
|
1894
1905
|
totalUsd: zod.ZodString;
|
|
1895
1906
|
assets: zod.ZodArray<zod.ZodObject<{
|
|
1896
|
-
asset: zod.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
1907
|
+
asset: zod.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
1897
1908
|
name: zod.ZodString;
|
|
1898
1909
|
networks: zod.ZodArray<zod.ZodString, "many">;
|
|
1899
1910
|
depositable: zod.ZodBoolean;
|
|
@@ -1902,7 +1913,7 @@ declare namespace GetWalletCommand {
|
|
|
1902
1913
|
usdValue: zod.ZodString;
|
|
1903
1914
|
isZero: zod.ZodBoolean;
|
|
1904
1915
|
}, "strip", zod.ZodTypeAny, {
|
|
1905
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1916
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1906
1917
|
name: string;
|
|
1907
1918
|
networks: string[];
|
|
1908
1919
|
depositable: boolean;
|
|
@@ -1911,7 +1922,7 @@ declare namespace GetWalletCommand {
|
|
|
1911
1922
|
usdValue: string;
|
|
1912
1923
|
isZero: boolean;
|
|
1913
1924
|
}, {
|
|
1914
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1925
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1915
1926
|
name: string;
|
|
1916
1927
|
networks: string[];
|
|
1917
1928
|
depositable: boolean;
|
|
@@ -1924,7 +1935,7 @@ declare namespace GetWalletCommand {
|
|
|
1924
1935
|
}, "strip", zod.ZodTypeAny, {
|
|
1925
1936
|
totalUsd: string;
|
|
1926
1937
|
assets: {
|
|
1927
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1938
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1928
1939
|
name: string;
|
|
1929
1940
|
networks: string[];
|
|
1930
1941
|
depositable: boolean;
|
|
@@ -1937,7 +1948,7 @@ declare namespace GetWalletCommand {
|
|
|
1937
1948
|
}, {
|
|
1938
1949
|
totalUsd: string;
|
|
1939
1950
|
assets: {
|
|
1940
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1951
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1941
1952
|
name: string;
|
|
1942
1953
|
networks: string[];
|
|
1943
1954
|
depositable: boolean;
|
|
@@ -1972,7 +1983,7 @@ declare namespace GetTransactionsCommand {
|
|
|
1972
1983
|
items: z.ZodArray<z.ZodObject<{
|
|
1973
1984
|
id: z.ZodString;
|
|
1974
1985
|
type: z.ZodEnum<["DEPOSIT", "WITHDRAWAL", "BUY", "SELL", "COMMISSION", "BONUS", "ADJUSTMENT"]>;
|
|
1975
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
1986
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
1976
1987
|
amount: z.ZodString;
|
|
1977
1988
|
price: z.ZodNullable<z.ZodString>;
|
|
1978
1989
|
quoteAmount: z.ZodNullable<z.ZodString>;
|
|
@@ -1984,7 +1995,7 @@ declare namespace GetTransactionsCommand {
|
|
|
1984
1995
|
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
1985
1996
|
id: string;
|
|
1986
1997
|
createdAt: string;
|
|
1987
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1998
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1988
1999
|
amount: string;
|
|
1989
2000
|
price: string | null;
|
|
1990
2001
|
quoteAmount: string | null;
|
|
@@ -1994,7 +2005,7 @@ declare namespace GetTransactionsCommand {
|
|
|
1994
2005
|
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
1995
2006
|
id: string;
|
|
1996
2007
|
createdAt: string;
|
|
1997
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2008
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
1998
2009
|
amount: string;
|
|
1999
2010
|
price: string | null;
|
|
2000
2011
|
quoteAmount: string | null;
|
|
@@ -2011,7 +2022,7 @@ declare namespace GetTransactionsCommand {
|
|
|
2011
2022
|
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
2012
2023
|
id: string;
|
|
2013
2024
|
createdAt: string;
|
|
2014
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2025
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2015
2026
|
amount: string;
|
|
2016
2027
|
price: string | null;
|
|
2017
2028
|
quoteAmount: string | null;
|
|
@@ -2026,7 +2037,7 @@ declare namespace GetTransactionsCommand {
|
|
|
2026
2037
|
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
|
|
2027
2038
|
id: string;
|
|
2028
2039
|
createdAt: string;
|
|
2029
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2040
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
2030
2041
|
amount: string;
|
|
2031
2042
|
price: string | null;
|
|
2032
2043
|
quoteAmount: string | null;
|
|
@@ -2951,6 +2962,9 @@ declare namespace GetPackagesCommand {
|
|
|
2951
2962
|
sellIntervalDays: zod.ZodNullable<zod.ZodNumber>;
|
|
2952
2963
|
nextSellAt: zod.ZodNullable<zod.ZodString>;
|
|
2953
2964
|
balanceUsdt: zod.ZodString;
|
|
2965
|
+
balanceWnmn: zod.ZodString;
|
|
2966
|
+
wnmnPackageRate: zod.ZodString;
|
|
2967
|
+
tokenPrice: zod.ZodString;
|
|
2954
2968
|
}, "strip", zod.ZodTypeAny, {
|
|
2955
2969
|
sellIntervalDays: number | null;
|
|
2956
2970
|
packages: {
|
|
@@ -2979,6 +2993,9 @@ declare namespace GetPackagesCommand {
|
|
|
2979
2993
|
maxPriceUsd: string;
|
|
2980
2994
|
nextSellAt: string | null;
|
|
2981
2995
|
balanceUsdt: string;
|
|
2996
|
+
balanceWnmn: string;
|
|
2997
|
+
wnmnPackageRate: string;
|
|
2998
|
+
tokenPrice: string;
|
|
2982
2999
|
}, {
|
|
2983
3000
|
sellIntervalDays: number | null;
|
|
2984
3001
|
packages: {
|
|
@@ -3007,6 +3024,9 @@ declare namespace GetPackagesCommand {
|
|
|
3007
3024
|
maxPriceUsd: string;
|
|
3008
3025
|
nextSellAt: string | null;
|
|
3009
3026
|
balanceUsdt: string;
|
|
3027
|
+
balanceWnmn: string;
|
|
3028
|
+
wnmnPackageRate: string;
|
|
3029
|
+
tokenPrice: string;
|
|
3010
3030
|
}>;
|
|
3011
3031
|
type Response = PackagesOverview;
|
|
3012
3032
|
}
|
|
@@ -3015,10 +3035,13 @@ declare namespace BuyPackageCommand {
|
|
|
3015
3035
|
const endpointDetails: EndpointDetails;
|
|
3016
3036
|
const RequestSchema: z.ZodObject<{
|
|
3017
3037
|
idempotencyKey: z.ZodString;
|
|
3038
|
+
payWith: z.ZodDefault<z.ZodEnum<["USDT", "wNMN"]>>;
|
|
3018
3039
|
}, "strip", z.ZodTypeAny, {
|
|
3019
3040
|
idempotencyKey: string;
|
|
3041
|
+
payWith: "wNMN" | "USDT";
|
|
3020
3042
|
}, {
|
|
3021
3043
|
idempotencyKey: string;
|
|
3044
|
+
payWith?: "wNMN" | "USDT" | undefined;
|
|
3022
3045
|
}>;
|
|
3023
3046
|
type Request = z.infer<typeof RequestSchema>;
|
|
3024
3047
|
const ResponseSchema: z.ZodObject<{
|
|
@@ -3026,16 +3049,22 @@ declare namespace BuyPackageCommand {
|
|
|
3026
3049
|
priceUsd: z.ZodString;
|
|
3027
3050
|
nmnAmount: z.ZodString;
|
|
3028
3051
|
tokenPrice: z.ZodString;
|
|
3052
|
+
paidWith: z.ZodEnum<["USDT", "wNMN"]>;
|
|
3053
|
+
wnmnSpent: z.ZodNullable<z.ZodString>;
|
|
3029
3054
|
}, "strip", z.ZodTypeAny, {
|
|
3030
3055
|
priceUsd: string;
|
|
3031
3056
|
tokenPrice: string;
|
|
3032
3057
|
nmnAmount: string;
|
|
3033
3058
|
purchaseId: string;
|
|
3059
|
+
paidWith: "wNMN" | "USDT";
|
|
3060
|
+
wnmnSpent: string | null;
|
|
3034
3061
|
}, {
|
|
3035
3062
|
priceUsd: string;
|
|
3036
3063
|
tokenPrice: string;
|
|
3037
3064
|
nmnAmount: string;
|
|
3038
3065
|
purchaseId: string;
|
|
3066
|
+
paidWith: "wNMN" | "USDT";
|
|
3067
|
+
wnmnSpent: string | null;
|
|
3039
3068
|
}>;
|
|
3040
3069
|
type Response = z.infer<typeof ResponseSchema>;
|
|
3041
3070
|
}
|
|
@@ -3187,8 +3216,8 @@ declare namespace GetEarningsCommand {
|
|
|
3187
3216
|
}, "strip", zod.ZodTypeAny, {
|
|
3188
3217
|
networkTurnover: string;
|
|
3189
3218
|
affiliateIncome: string;
|
|
3190
|
-
tokenBalance: string;
|
|
3191
3219
|
tokenPrice: string;
|
|
3220
|
+
tokenBalance: string;
|
|
3192
3221
|
tokenValueUsd: string;
|
|
3193
3222
|
rank: {
|
|
3194
3223
|
name: string;
|
|
@@ -3201,8 +3230,8 @@ declare namespace GetEarningsCommand {
|
|
|
3201
3230
|
}, {
|
|
3202
3231
|
networkTurnover: string;
|
|
3203
3232
|
affiliateIncome: string;
|
|
3204
|
-
tokenBalance: string;
|
|
3205
3233
|
tokenPrice: string;
|
|
3234
|
+
tokenBalance: string;
|
|
3206
3235
|
tokenValueUsd: string;
|
|
3207
3236
|
rank: {
|
|
3208
3237
|
name: string;
|
|
@@ -3255,7 +3284,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
3255
3284
|
const ResponseSchema: z.ZodObject<{
|
|
3256
3285
|
items: z.ZodArray<z.ZodObject<{
|
|
3257
3286
|
id: z.ZodString;
|
|
3258
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3287
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3259
3288
|
amount: z.ZodString;
|
|
3260
3289
|
fee: z.ZodString;
|
|
3261
3290
|
address: z.ZodString;
|
|
@@ -3265,7 +3294,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
3265
3294
|
status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
|
|
3266
3295
|
id: string;
|
|
3267
3296
|
createdAt: string;
|
|
3268
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3297
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3269
3298
|
amount: string;
|
|
3270
3299
|
address: string;
|
|
3271
3300
|
fee: string;
|
|
@@ -3273,7 +3302,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
3273
3302
|
status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
|
|
3274
3303
|
id: string;
|
|
3275
3304
|
createdAt: string;
|
|
3276
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3305
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3277
3306
|
amount: string;
|
|
3278
3307
|
address: string;
|
|
3279
3308
|
fee: string;
|
|
@@ -3283,7 +3312,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
3283
3312
|
status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
|
|
3284
3313
|
id: string;
|
|
3285
3314
|
createdAt: string;
|
|
3286
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3315
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3287
3316
|
amount: string;
|
|
3288
3317
|
address: string;
|
|
3289
3318
|
fee: string;
|
|
@@ -3293,7 +3322,7 @@ declare namespace ListWithdrawalsCommand {
|
|
|
3293
3322
|
status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
|
|
3294
3323
|
id: string;
|
|
3295
3324
|
createdAt: string;
|
|
3296
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3325
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3297
3326
|
amount: string;
|
|
3298
3327
|
address: string;
|
|
3299
3328
|
fee: string;
|
|
@@ -3670,14 +3699,14 @@ type WheelSpinKind = z.infer<typeof WheelSpinKindSchema>;
|
|
|
3670
3699
|
declare const WheelPrizeSchema: z.ZodObject<{
|
|
3671
3700
|
id: z.ZodString;
|
|
3672
3701
|
slot: z.ZodNumber;
|
|
3673
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3702
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3674
3703
|
label: z.ZodNullable<z.ZodString>;
|
|
3675
3704
|
amount: z.ZodString;
|
|
3676
3705
|
valueUsd: z.ZodString;
|
|
3677
3706
|
jackpot: z.ZodBoolean;
|
|
3678
3707
|
}, "strip", z.ZodTypeAny, {
|
|
3679
3708
|
id: string;
|
|
3680
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3709
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3681
3710
|
amount: string;
|
|
3682
3711
|
slot: number;
|
|
3683
3712
|
label: string | null;
|
|
@@ -3685,7 +3714,7 @@ declare const WheelPrizeSchema: z.ZodObject<{
|
|
|
3685
3714
|
jackpot: boolean;
|
|
3686
3715
|
}, {
|
|
3687
3716
|
id: string;
|
|
3688
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3717
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3689
3718
|
amount: string;
|
|
3690
3719
|
slot: number;
|
|
3691
3720
|
label: string | null;
|
|
@@ -3696,7 +3725,7 @@ type WheelPrize = z.infer<typeof WheelPrizeSchema>;
|
|
|
3696
3725
|
declare const WheelWinSchema: z.ZodObject<{
|
|
3697
3726
|
id: z.ZodString;
|
|
3698
3727
|
slot: z.ZodNumber;
|
|
3699
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3728
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3700
3729
|
label: z.ZodNullable<z.ZodString>;
|
|
3701
3730
|
amount: z.ZodString;
|
|
3702
3731
|
valueUsd: z.ZodString;
|
|
@@ -3706,7 +3735,7 @@ declare const WheelWinSchema: z.ZodObject<{
|
|
|
3706
3735
|
}, "strip", z.ZodTypeAny, {
|
|
3707
3736
|
id: string;
|
|
3708
3737
|
createdAt: string;
|
|
3709
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3738
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3710
3739
|
amount: string;
|
|
3711
3740
|
kind: "FREE" | "PAID";
|
|
3712
3741
|
slot: number;
|
|
@@ -3716,7 +3745,7 @@ declare const WheelWinSchema: z.ZodObject<{
|
|
|
3716
3745
|
}, {
|
|
3717
3746
|
id: string;
|
|
3718
3747
|
createdAt: string;
|
|
3719
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3748
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3720
3749
|
amount: string;
|
|
3721
3750
|
kind: "FREE" | "PAID";
|
|
3722
3751
|
slot: number;
|
|
@@ -3737,14 +3766,14 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3737
3766
|
prizes: z.ZodArray<z.ZodObject<{
|
|
3738
3767
|
id: z.ZodString;
|
|
3739
3768
|
slot: z.ZodNumber;
|
|
3740
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3769
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3741
3770
|
label: z.ZodNullable<z.ZodString>;
|
|
3742
3771
|
amount: z.ZodString;
|
|
3743
3772
|
valueUsd: z.ZodString;
|
|
3744
3773
|
jackpot: z.ZodBoolean;
|
|
3745
3774
|
}, "strip", z.ZodTypeAny, {
|
|
3746
3775
|
id: string;
|
|
3747
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3776
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3748
3777
|
amount: string;
|
|
3749
3778
|
slot: number;
|
|
3750
3779
|
label: string | null;
|
|
@@ -3752,7 +3781,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3752
3781
|
jackpot: boolean;
|
|
3753
3782
|
}, {
|
|
3754
3783
|
id: string;
|
|
3755
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3784
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3756
3785
|
amount: string;
|
|
3757
3786
|
slot: number;
|
|
3758
3787
|
label: string | null;
|
|
@@ -3762,7 +3791,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3762
3791
|
history: z.ZodArray<z.ZodObject<{
|
|
3763
3792
|
id: z.ZodString;
|
|
3764
3793
|
slot: z.ZodNumber;
|
|
3765
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3794
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3766
3795
|
label: z.ZodNullable<z.ZodString>;
|
|
3767
3796
|
amount: z.ZodString;
|
|
3768
3797
|
valueUsd: z.ZodString;
|
|
@@ -3772,7 +3801,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3772
3801
|
}, "strip", z.ZodTypeAny, {
|
|
3773
3802
|
id: string;
|
|
3774
3803
|
createdAt: string;
|
|
3775
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3804
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3776
3805
|
amount: string;
|
|
3777
3806
|
kind: "FREE" | "PAID";
|
|
3778
3807
|
slot: number;
|
|
@@ -3782,7 +3811,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3782
3811
|
}, {
|
|
3783
3812
|
id: string;
|
|
3784
3813
|
createdAt: string;
|
|
3785
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3814
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3786
3815
|
amount: string;
|
|
3787
3816
|
kind: "FREE" | "PAID";
|
|
3788
3817
|
slot: number;
|
|
@@ -3801,7 +3830,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3801
3830
|
paidSpinsLeftToday: number;
|
|
3802
3831
|
prizes: {
|
|
3803
3832
|
id: string;
|
|
3804
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3833
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3805
3834
|
amount: string;
|
|
3806
3835
|
slot: number;
|
|
3807
3836
|
label: string | null;
|
|
@@ -3811,7 +3840,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3811
3840
|
history: {
|
|
3812
3841
|
id: string;
|
|
3813
3842
|
createdAt: string;
|
|
3814
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3843
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3815
3844
|
amount: string;
|
|
3816
3845
|
kind: "FREE" | "PAID";
|
|
3817
3846
|
slot: number;
|
|
@@ -3830,7 +3859,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3830
3859
|
paidSpinsLeftToday: number;
|
|
3831
3860
|
prizes: {
|
|
3832
3861
|
id: string;
|
|
3833
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3862
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3834
3863
|
amount: string;
|
|
3835
3864
|
slot: number;
|
|
3836
3865
|
label: string | null;
|
|
@@ -3840,7 +3869,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3840
3869
|
history: {
|
|
3841
3870
|
id: string;
|
|
3842
3871
|
createdAt: string;
|
|
3843
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3872
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3844
3873
|
amount: string;
|
|
3845
3874
|
kind: "FREE" | "PAID";
|
|
3846
3875
|
slot: number;
|
|
@@ -3856,14 +3885,14 @@ declare const WheelSpinResultSchema: z.ZodObject<{
|
|
|
3856
3885
|
prize: z.ZodObject<{
|
|
3857
3886
|
id: z.ZodString;
|
|
3858
3887
|
slot: z.ZodNumber;
|
|
3859
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3888
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3860
3889
|
label: z.ZodNullable<z.ZodString>;
|
|
3861
3890
|
amount: z.ZodString;
|
|
3862
3891
|
valueUsd: z.ZodString;
|
|
3863
3892
|
jackpot: z.ZodBoolean;
|
|
3864
3893
|
}, "strip", z.ZodTypeAny, {
|
|
3865
3894
|
id: string;
|
|
3866
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3895
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3867
3896
|
amount: string;
|
|
3868
3897
|
slot: number;
|
|
3869
3898
|
label: string | null;
|
|
@@ -3871,7 +3900,7 @@ declare const WheelSpinResultSchema: z.ZodObject<{
|
|
|
3871
3900
|
jackpot: boolean;
|
|
3872
3901
|
}, {
|
|
3873
3902
|
id: string;
|
|
3874
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3903
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3875
3904
|
amount: string;
|
|
3876
3905
|
slot: number;
|
|
3877
3906
|
label: string | null;
|
|
@@ -3893,7 +3922,7 @@ declare const WheelSpinResultSchema: z.ZodObject<{
|
|
|
3893
3922
|
spinId: string;
|
|
3894
3923
|
prize: {
|
|
3895
3924
|
id: string;
|
|
3896
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3925
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3897
3926
|
amount: string;
|
|
3898
3927
|
slot: number;
|
|
3899
3928
|
label: string | null;
|
|
@@ -3910,7 +3939,7 @@ declare const WheelSpinResultSchema: z.ZodObject<{
|
|
|
3910
3939
|
spinId: string;
|
|
3911
3940
|
prize: {
|
|
3912
3941
|
id: string;
|
|
3913
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3942
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3914
3943
|
amount: string;
|
|
3915
3944
|
slot: number;
|
|
3916
3945
|
label: string | null;
|
|
@@ -3934,14 +3963,14 @@ declare namespace GetWheelCommand {
|
|
|
3934
3963
|
prizes: z.ZodArray<z.ZodObject<{
|
|
3935
3964
|
id: z.ZodString;
|
|
3936
3965
|
slot: z.ZodNumber;
|
|
3937
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3966
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3938
3967
|
label: z.ZodNullable<z.ZodString>;
|
|
3939
3968
|
amount: z.ZodString;
|
|
3940
3969
|
valueUsd: z.ZodString;
|
|
3941
3970
|
jackpot: z.ZodBoolean;
|
|
3942
3971
|
}, "strip", z.ZodTypeAny, {
|
|
3943
3972
|
id: string;
|
|
3944
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3973
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3945
3974
|
amount: string;
|
|
3946
3975
|
slot: number;
|
|
3947
3976
|
label: string | null;
|
|
@@ -3949,7 +3978,7 @@ declare namespace GetWheelCommand {
|
|
|
3949
3978
|
jackpot: boolean;
|
|
3950
3979
|
}, {
|
|
3951
3980
|
id: string;
|
|
3952
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3981
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3953
3982
|
amount: string;
|
|
3954
3983
|
slot: number;
|
|
3955
3984
|
label: string | null;
|
|
@@ -3959,7 +3988,7 @@ declare namespace GetWheelCommand {
|
|
|
3959
3988
|
history: z.ZodArray<z.ZodObject<{
|
|
3960
3989
|
id: z.ZodString;
|
|
3961
3990
|
slot: z.ZodNumber;
|
|
3962
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3991
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3963
3992
|
label: z.ZodNullable<z.ZodString>;
|
|
3964
3993
|
amount: z.ZodString;
|
|
3965
3994
|
valueUsd: z.ZodString;
|
|
@@ -3969,7 +3998,7 @@ declare namespace GetWheelCommand {
|
|
|
3969
3998
|
}, "strip", z.ZodTypeAny, {
|
|
3970
3999
|
id: string;
|
|
3971
4000
|
createdAt: string;
|
|
3972
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4001
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3973
4002
|
amount: string;
|
|
3974
4003
|
kind: "FREE" | "PAID";
|
|
3975
4004
|
slot: number;
|
|
@@ -3979,7 +4008,7 @@ declare namespace GetWheelCommand {
|
|
|
3979
4008
|
}, {
|
|
3980
4009
|
id: string;
|
|
3981
4010
|
createdAt: string;
|
|
3982
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4011
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3983
4012
|
amount: string;
|
|
3984
4013
|
kind: "FREE" | "PAID";
|
|
3985
4014
|
slot: number;
|
|
@@ -3998,7 +4027,7 @@ declare namespace GetWheelCommand {
|
|
|
3998
4027
|
paidSpinsLeftToday: number;
|
|
3999
4028
|
prizes: {
|
|
4000
4029
|
id: string;
|
|
4001
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4030
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4002
4031
|
amount: string;
|
|
4003
4032
|
slot: number;
|
|
4004
4033
|
label: string | null;
|
|
@@ -4008,7 +4037,7 @@ declare namespace GetWheelCommand {
|
|
|
4008
4037
|
history: {
|
|
4009
4038
|
id: string;
|
|
4010
4039
|
createdAt: string;
|
|
4011
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4040
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4012
4041
|
amount: string;
|
|
4013
4042
|
kind: "FREE" | "PAID";
|
|
4014
4043
|
slot: number;
|
|
@@ -4027,7 +4056,7 @@ declare namespace GetWheelCommand {
|
|
|
4027
4056
|
paidSpinsLeftToday: number;
|
|
4028
4057
|
prizes: {
|
|
4029
4058
|
id: string;
|
|
4030
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4059
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4031
4060
|
amount: string;
|
|
4032
4061
|
slot: number;
|
|
4033
4062
|
label: string | null;
|
|
@@ -4037,7 +4066,7 @@ declare namespace GetWheelCommand {
|
|
|
4037
4066
|
history: {
|
|
4038
4067
|
id: string;
|
|
4039
4068
|
createdAt: string;
|
|
4040
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4069
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4041
4070
|
amount: string;
|
|
4042
4071
|
kind: "FREE" | "PAID";
|
|
4043
4072
|
slot: number;
|
|
@@ -4064,14 +4093,14 @@ declare namespace SpinWheelCommand {
|
|
|
4064
4093
|
prize: z.ZodObject<{
|
|
4065
4094
|
id: z.ZodString;
|
|
4066
4095
|
slot: z.ZodNumber;
|
|
4067
|
-
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
4096
|
+
asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
4068
4097
|
label: z.ZodNullable<z.ZodString>;
|
|
4069
4098
|
amount: z.ZodString;
|
|
4070
4099
|
valueUsd: z.ZodString;
|
|
4071
4100
|
jackpot: z.ZodBoolean;
|
|
4072
4101
|
}, "strip", z.ZodTypeAny, {
|
|
4073
4102
|
id: string;
|
|
4074
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4103
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4075
4104
|
amount: string;
|
|
4076
4105
|
slot: number;
|
|
4077
4106
|
label: string | null;
|
|
@@ -4079,7 +4108,7 @@ declare namespace SpinWheelCommand {
|
|
|
4079
4108
|
jackpot: boolean;
|
|
4080
4109
|
}, {
|
|
4081
4110
|
id: string;
|
|
4082
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4111
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4083
4112
|
amount: string;
|
|
4084
4113
|
slot: number;
|
|
4085
4114
|
label: string | null;
|
|
@@ -4101,7 +4130,7 @@ declare namespace SpinWheelCommand {
|
|
|
4101
4130
|
spinId: string;
|
|
4102
4131
|
prize: {
|
|
4103
4132
|
id: string;
|
|
4104
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4133
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4105
4134
|
amount: string;
|
|
4106
4135
|
slot: number;
|
|
4107
4136
|
label: string | null;
|
|
@@ -4118,7 +4147,7 @@ declare namespace SpinWheelCommand {
|
|
|
4118
4147
|
spinId: string;
|
|
4119
4148
|
prize: {
|
|
4120
4149
|
id: string;
|
|
4121
|
-
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4150
|
+
asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4122
4151
|
amount: string;
|
|
4123
4152
|
slot: number;
|
|
4124
4153
|
label: string | null;
|
|
@@ -6367,4 +6396,4 @@ declare const REST_API: {
|
|
|
6367
6396
|
declare const API_PREFIX = "/api";
|
|
6368
6397
|
declare const API_VERSION = "v1";
|
|
6369
6398
|
|
|
6370
|
-
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BrowsePartnersCommand, BuyPackageCommand, CONTENT_LOCALES, CancelOrderCommand, CancelWithdrawalCommand, CaptchaPolicyCommand, ChangePasswordCommand, type ChartPeriod, ChartPeriodSchema, type ChartPoint, ChartPointSchema, ClaimDailyBonusCommand, ClaimTicketCommand, ClaimTutorialRewardCommand, ConfirmEmailChangeCommand, ConfirmTotpCommand, ConfirmWithdrawalCommand, type ContentLocale, ContentLocaleSchema, CreateTicketCommand, DEFAULT_CONTENT_LOCALE, DEPOSITABLE_ASSETS, type DailyBonusClaimResult, DailyBonusClaimResultSchema, type DailyBonusDay, DailyBonusDaySchema, type DailyBonusStatus, DailyBonusStatusSchema, type DepositAddress, DepositAddressCommand, DepositAddressSchema, type DepositEntry, DepositEntrySchema, type DepositStatus, DepositStatusSchema, type DepositableAsset, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, type EarningsOverview, EarningsOverviewSchema, type EndpointDetails, type ErrorCode, type ErrorResponse, ErrorResponseSchema, FUNDING_ASSET, ForgotPasswordCommand, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPackagesCommand, GetPartnersCommand, GetRanksCommand, GetSettingsCommand, GetSlidesCommand, GetSupportTicketCommand, GetTicketCommand, GetTokenChartCommand, GetTokenPriceCommand, GetTransactionsCommand, GetTutorialRewardCommand, GetWalletCommand, GetWheelCommand, type HttpMethod, type IncomeOverview, IncomeOverviewSchema, type IncomePeriod, IncomePeriodSchema, type Leaderboard, type LeaderboardEntry, LeaderboardEntrySchema, type LeaderboardPeriod, LeaderboardPeriodSchema, LeaderboardSchema, LinkGoogleCommand, type LinkProvider, LinkProviderSchema, LinkTelegramCommand, type LinkedAccount, LinkedAccountSchema, ListDepositsCommand, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListSupportTicketsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, type MonthlyPricePoint, MonthlyPricePointSchema, NMN_PRICE_DECIMALS, type Notification, NotificationSchema, type NotificationType, NotificationTypeSchema, type Order, type OrderBook, type OrderBookLevel, OrderBookLevelSchema, OrderBookSchema, OrderSchema, type OrderSide, OrderSideSchema, type OrderStatus, OrderStatusSchema, type OrderType, OrderTypeSchema, type Package, PackageSchema, type PackageStatus, PackageStatusSchema, type PackagesOverview, PackagesOverviewSchema, PaginatedSchema, type PaginationQuery, PaginationQuerySchema, type PartnerAccrual, PartnerAccrualSchema, type PartnerBranch, type PartnerBranchRoot, PartnerBranchRootSchema, PartnerBranchSchema, type PartnerLevel, PartnerLevelSchema, type PartnerNode, PartnerNodeSchema, type PartnersOverview, PartnersOverviewSchema, type Period, PeriodSchema, PlaceOrderCommand, PositiveMoneyStringSchema, type PublicTrade, PublicTradeSchema, REST_API, type RankDef, RankDefSchema, RegisterCommand, ReplyTicketCommand, RequestEmailChangeCommand, RequestPasswordChangeCommand, RequestWithdrawalCommand, ResendVerificationCommand, ResetPasswordCommand, ResolveTicketCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, type Slide, type SlideButtonStyle, SlideButtonStyleSchema, type SlideKind, SlideKindSchema, type SlideLinkTarget, SlideLinkTargetSchema, SlideSchema, type SlidesResponse, SlidesResponseSchema, SpinWheelCommand, SupportReplyTicketCommand, type SupportTicketDetail, SupportTicketDetailSchema, type SupportTicketScope, SupportTicketScopeSchema, type SupportTicketSummary, SupportTicketSummarySchema, type SupportTicketUser, SupportTicketUserSchema, SwapCommand, type SwapSide, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, TelegramLinkCodeCommand, type ThreatLevel, ThreatLevelSchema, type TicketAttachment, type TicketAttachmentInput, TicketAttachmentInputSchema, TicketAttachmentSchema, TicketAttachmentUploadCommand, type TicketAuthorType, TicketAuthorTypeSchema, TicketBodySchema, type TicketCategory, TicketCategorySchema, type TicketDetail, TicketDetailSchema, type TicketMessage, TicketMessageSchema, type TicketStatus, TicketStatusSchema, type TicketSummary, TicketSummarySchema, type TokenPrice, TokenPriceSchema, type TradeLimits, TradeLimitsSchema, type TradeResult, TradeResultSchema, type Transaction, TransactionSchema, type TransactionStatus, TransactionStatusSchema, type TransactionType, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, UpgradePackageCommand, type UserProfile, UserProfileSchema, type UserRank, UserRankSchema, type UserRole, UserRoleSchema, type UserSettings, UserSettingsSchema, type UserStatus, UserStatusSchema, UuidSchema, VerifyEmailCommand, WHEEL_SLOT_COUNT, type WalletOverview, WalletOverviewSchema, type WheelAmountMode, WheelAmountModeSchema, type WheelPrize, WheelPrizeSchema, WheelSlotSchema, type WheelSpinKind, WheelSpinKindSchema, type WheelSpinResult, WheelSpinResultSchema, type WheelStatus, WheelStatusSchema, type WheelWin, WheelWinSchema, type Withdrawal, WithdrawalSchema, type WithdrawalStatus, WithdrawalStatusSchema, assetDecimals, endpoint, isContentLocale };
|
|
6399
|
+
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BONUS_ASSET, BrowsePartnersCommand, BuyPackageCommand, CONTENT_LOCALES, CancelOrderCommand, CancelWithdrawalCommand, CaptchaPolicyCommand, ChangePasswordCommand, type ChartPeriod, ChartPeriodSchema, type ChartPoint, ChartPointSchema, ClaimDailyBonusCommand, ClaimTicketCommand, ClaimTutorialRewardCommand, ConfirmEmailChangeCommand, ConfirmTotpCommand, ConfirmWithdrawalCommand, type ContentLocale, ContentLocaleSchema, CreateTicketCommand, DEFAULT_CONTENT_LOCALE, DEPOSITABLE_ASSETS, type DailyBonusClaimResult, DailyBonusClaimResultSchema, type DailyBonusDay, DailyBonusDaySchema, type DailyBonusStatus, DailyBonusStatusSchema, type DepositAddress, DepositAddressCommand, DepositAddressSchema, type DepositEntry, DepositEntrySchema, type DepositStatus, DepositStatusSchema, type DepositableAsset, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, type EarningsOverview, EarningsOverviewSchema, type EndpointDetails, type ErrorCode, type ErrorResponse, ErrorResponseSchema, FUNDING_ASSET, ForgotPasswordCommand, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPackagesCommand, GetPartnersCommand, GetRanksCommand, GetSettingsCommand, GetSlidesCommand, GetSupportTicketCommand, GetTicketCommand, GetTokenChartCommand, GetTokenPriceCommand, GetTransactionsCommand, GetTutorialRewardCommand, GetWalletCommand, GetWheelCommand, type HttpMethod, type IncomeOverview, IncomeOverviewSchema, type IncomePeriod, IncomePeriodSchema, type Leaderboard, type LeaderboardEntry, LeaderboardEntrySchema, type LeaderboardPeriod, LeaderboardPeriodSchema, LeaderboardSchema, LinkGoogleCommand, type LinkProvider, LinkProviderSchema, LinkTelegramCommand, type LinkedAccount, LinkedAccountSchema, ListDepositsCommand, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListSupportTicketsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, type MonthlyPricePoint, MonthlyPricePointSchema, NMN_PRICE_DECIMALS, type Notification, NotificationSchema, type NotificationType, NotificationTypeSchema, type Order, type OrderBook, type OrderBookLevel, OrderBookLevelSchema, OrderBookSchema, OrderSchema, type OrderSide, OrderSideSchema, type OrderStatus, OrderStatusSchema, type OrderType, OrderTypeSchema, type Package, PackageSchema, type PackageStatus, PackageStatusSchema, type PackagesOverview, PackagesOverviewSchema, PaginatedSchema, type PaginationQuery, PaginationQuerySchema, type PartnerAccrual, PartnerAccrualSchema, type PartnerBranch, type PartnerBranchRoot, PartnerBranchRootSchema, PartnerBranchSchema, type PartnerLevel, PartnerLevelSchema, type PartnerNode, PartnerNodeSchema, type PartnersOverview, PartnersOverviewSchema, type Period, PeriodSchema, PlaceOrderCommand, PositiveMoneyStringSchema, type PublicTrade, PublicTradeSchema, REST_API, type RankDef, RankDefSchema, RegisterCommand, ReplyTicketCommand, RequestEmailChangeCommand, RequestPasswordChangeCommand, RequestWithdrawalCommand, ResendVerificationCommand, ResetPasswordCommand, ResolveTicketCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, type Slide, type SlideButtonStyle, SlideButtonStyleSchema, type SlideKind, SlideKindSchema, type SlideLinkTarget, SlideLinkTargetSchema, SlideSchema, type SlidesResponse, SlidesResponseSchema, SpinWheelCommand, SupportReplyTicketCommand, type SupportTicketDetail, SupportTicketDetailSchema, type SupportTicketScope, SupportTicketScopeSchema, type SupportTicketSummary, SupportTicketSummarySchema, type SupportTicketUser, SupportTicketUserSchema, SwapCommand, type SwapSide, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, TelegramLinkCodeCommand, type ThreatLevel, ThreatLevelSchema, type TicketAttachment, type TicketAttachmentInput, TicketAttachmentInputSchema, TicketAttachmentSchema, TicketAttachmentUploadCommand, type TicketAuthorType, TicketAuthorTypeSchema, TicketBodySchema, type TicketCategory, TicketCategorySchema, type TicketDetail, TicketDetailSchema, type TicketMessage, TicketMessageSchema, type TicketStatus, TicketStatusSchema, type TicketSummary, TicketSummarySchema, type TokenPrice, TokenPriceSchema, type TradeLimits, TradeLimitsSchema, type TradeResult, TradeResultSchema, type Transaction, TransactionSchema, type TransactionStatus, TransactionStatusSchema, type TransactionType, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, UpgradePackageCommand, type UserProfile, UserProfileSchema, type UserRank, UserRankSchema, type UserRole, UserRoleSchema, type UserSettings, UserSettingsSchema, type UserStatus, UserStatusSchema, UuidSchema, VerifyEmailCommand, WHEEL_SLOT_COUNT, type WalletOverview, WalletOverviewSchema, type WheelAmountMode, WheelAmountModeSchema, type WheelPrize, WheelPrizeSchema, WheelSlotSchema, type WheelSpinKind, WheelSpinKindSchema, type WheelSpinResult, WheelSpinResultSchema, type WheelStatus, WheelStatusSchema, type WheelWin, WheelWinSchema, type Withdrawal, WithdrawalSchema, type WithdrawalStatus, WithdrawalStatusSchema, assetDecimals, endpoint, isContentLocale };
|