@numen-crypto/contract 0.18.0 → 0.18.2

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.d.ts CHANGED
@@ -204,17 +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", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"];
208
- declare const AssetSymbolSchema: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
207
+ declare const ASSET_SYMBOLS: readonly ["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"];
208
+ declare const AssetSymbolSchema: z.ZodEnum<["NMN", "bNMN", "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: "bNMN";
214
215
  declare const FUNDING_ASSET: "USDT";
215
216
  declare const ASSET_DECIMALS: {
216
217
  readonly NMN: 4;
217
- readonly wNMN: 4;
218
+ readonly bNMN: 4;
218
219
  readonly USDT: 2;
219
220
  readonly BTC: 8;
220
221
  readonly ETH: 8;
@@ -225,7 +226,7 @@ declare const ASSET_DECIMALS: {
225
226
  declare const NMN_PRICE_DECIMALS = 8;
226
227
  declare function assetDecimals(asset: AssetSymbol): number;
227
228
  declare const AssetBalanceSchema: z.ZodObject<{
228
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
229
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
229
230
  name: z.ZodString;
230
231
  networks: z.ZodArray<z.ZodString, "many">;
231
232
  depositable: z.ZodBoolean;
@@ -234,7 +235,7 @@ declare const AssetBalanceSchema: z.ZodObject<{
234
235
  usdValue: z.ZodString;
235
236
  isZero: z.ZodBoolean;
236
237
  }, "strip", z.ZodTypeAny, {
237
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
238
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
238
239
  name: string;
239
240
  networks: string[];
240
241
  depositable: boolean;
@@ -243,7 +244,7 @@ declare const AssetBalanceSchema: z.ZodObject<{
243
244
  usdValue: string;
244
245
  isZero: boolean;
245
246
  }, {
246
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
247
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
247
248
  name: string;
248
249
  networks: string[];
249
250
  depositable: boolean;
@@ -256,7 +257,7 @@ type AssetBalance = z.infer<typeof AssetBalanceSchema>;
256
257
  declare const WalletOverviewSchema: z.ZodObject<{
257
258
  totalUsd: z.ZodString;
258
259
  assets: z.ZodArray<z.ZodObject<{
259
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
260
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
260
261
  name: z.ZodString;
261
262
  networks: z.ZodArray<z.ZodString, "many">;
262
263
  depositable: z.ZodBoolean;
@@ -265,7 +266,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
265
266
  usdValue: z.ZodString;
266
267
  isZero: z.ZodBoolean;
267
268
  }, "strip", z.ZodTypeAny, {
268
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
269
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
269
270
  name: string;
270
271
  networks: string[];
271
272
  depositable: boolean;
@@ -274,7 +275,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
274
275
  usdValue: string;
275
276
  isZero: boolean;
276
277
  }, {
277
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
278
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
278
279
  name: string;
279
280
  networks: string[];
280
281
  depositable: boolean;
@@ -287,7 +288,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
287
288
  }, "strip", z.ZodTypeAny, {
288
289
  totalUsd: string;
289
290
  assets: {
290
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
291
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
291
292
  name: string;
292
293
  networks: string[];
293
294
  depositable: boolean;
@@ -300,7 +301,7 @@ declare const WalletOverviewSchema: z.ZodObject<{
300
301
  }, {
301
302
  totalUsd: string;
302
303
  assets: {
303
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
304
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
304
305
  name: string;
305
306
  networks: string[];
306
307
  depositable: boolean;
@@ -320,7 +321,7 @@ type TransactionStatus = z.infer<typeof TransactionStatusSchema>;
320
321
  declare const TransactionSchema: z.ZodObject<{
321
322
  id: z.ZodString;
322
323
  type: z.ZodEnum<["DEPOSIT", "WITHDRAWAL", "BUY", "SELL", "COMMISSION", "BONUS", "ADJUSTMENT"]>;
323
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
324
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
324
325
  amount: z.ZodString;
325
326
  price: z.ZodNullable<z.ZodString>;
326
327
  quoteAmount: z.ZodNullable<z.ZodString>;
@@ -332,7 +333,7 @@ declare const TransactionSchema: z.ZodObject<{
332
333
  status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
333
334
  id: string;
334
335
  createdAt: string;
335
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
336
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
336
337
  amount: string;
337
338
  price: string | null;
338
339
  quoteAmount: string | null;
@@ -342,7 +343,7 @@ declare const TransactionSchema: z.ZodObject<{
342
343
  status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
343
344
  id: string;
344
345
  createdAt: string;
345
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
346
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
346
347
  amount: string;
347
348
  price: string | null;
348
349
  quoteAmount: string | null;
@@ -787,8 +788,8 @@ declare const PackagesOverviewSchema: z.ZodObject<{
787
788
  sellIntervalDays: z.ZodNullable<z.ZodNumber>;
788
789
  nextSellAt: z.ZodNullable<z.ZodString>;
789
790
  balanceUsdt: z.ZodString;
790
- balanceWnmn: z.ZodString;
791
- wnmnPackageRate: z.ZodString;
791
+ balanceBnmn: z.ZodString;
792
+ bnmnPackageRate: z.ZodString;
792
793
  tokenPrice: z.ZodString;
793
794
  }, "strip", z.ZodTypeAny, {
794
795
  sellIntervalDays: number | null;
@@ -818,8 +819,8 @@ declare const PackagesOverviewSchema: z.ZodObject<{
818
819
  maxPriceUsd: string;
819
820
  nextSellAt: string | null;
820
821
  balanceUsdt: string;
821
- balanceWnmn: string;
822
- wnmnPackageRate: string;
822
+ balanceBnmn: string;
823
+ bnmnPackageRate: string;
823
824
  tokenPrice: string;
824
825
  }, {
825
826
  sellIntervalDays: number | null;
@@ -849,8 +850,8 @@ declare const PackagesOverviewSchema: z.ZodObject<{
849
850
  maxPriceUsd: string;
850
851
  nextSellAt: string | null;
851
852
  balanceUsdt: string;
852
- balanceWnmn: string;
853
- wnmnPackageRate: string;
853
+ balanceBnmn: string;
854
+ bnmnPackageRate: string;
854
855
  tokenPrice: string;
855
856
  }>;
856
857
  type PackagesOverview = z.infer<typeof PackagesOverviewSchema>;
@@ -1477,7 +1478,7 @@ declare const WithdrawalStatusSchema: z.ZodEnum<["AWAITING_CONFIRM", "AWAITING_C
1477
1478
  type WithdrawalStatus = z.infer<typeof WithdrawalStatusSchema>;
1478
1479
  declare const WithdrawalSchema: z.ZodObject<{
1479
1480
  id: z.ZodString;
1480
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
1481
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
1481
1482
  amount: z.ZodString;
1482
1483
  fee: z.ZodString;
1483
1484
  address: z.ZodString;
@@ -1487,7 +1488,7 @@ declare const WithdrawalSchema: z.ZodObject<{
1487
1488
  status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
1488
1489
  id: string;
1489
1490
  createdAt: string;
1490
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1491
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1491
1492
  amount: string;
1492
1493
  address: string;
1493
1494
  fee: string;
@@ -1495,7 +1496,7 @@ declare const WithdrawalSchema: z.ZodObject<{
1495
1496
  status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
1496
1497
  id: string;
1497
1498
  createdAt: string;
1498
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1499
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1499
1500
  amount: string;
1500
1501
  address: string;
1501
1502
  fee: string;
@@ -1903,7 +1904,7 @@ declare namespace GetWalletCommand {
1903
1904
  const ResponseSchema: zod.ZodObject<{
1904
1905
  totalUsd: zod.ZodString;
1905
1906
  assets: zod.ZodArray<zod.ZodObject<{
1906
- asset: zod.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
1907
+ asset: zod.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
1907
1908
  name: zod.ZodString;
1908
1909
  networks: zod.ZodArray<zod.ZodString, "many">;
1909
1910
  depositable: zod.ZodBoolean;
@@ -1912,7 +1913,7 @@ declare namespace GetWalletCommand {
1912
1913
  usdValue: zod.ZodString;
1913
1914
  isZero: zod.ZodBoolean;
1914
1915
  }, "strip", zod.ZodTypeAny, {
1915
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1916
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1916
1917
  name: string;
1917
1918
  networks: string[];
1918
1919
  depositable: boolean;
@@ -1921,7 +1922,7 @@ declare namespace GetWalletCommand {
1921
1922
  usdValue: string;
1922
1923
  isZero: boolean;
1923
1924
  }, {
1924
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1925
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1925
1926
  name: string;
1926
1927
  networks: string[];
1927
1928
  depositable: boolean;
@@ -1934,7 +1935,7 @@ declare namespace GetWalletCommand {
1934
1935
  }, "strip", zod.ZodTypeAny, {
1935
1936
  totalUsd: string;
1936
1937
  assets: {
1937
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1938
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1938
1939
  name: string;
1939
1940
  networks: string[];
1940
1941
  depositable: boolean;
@@ -1947,7 +1948,7 @@ declare namespace GetWalletCommand {
1947
1948
  }, {
1948
1949
  totalUsd: string;
1949
1950
  assets: {
1950
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1951
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1951
1952
  name: string;
1952
1953
  networks: string[];
1953
1954
  depositable: boolean;
@@ -1982,7 +1983,7 @@ declare namespace GetTransactionsCommand {
1982
1983
  items: z.ZodArray<z.ZodObject<{
1983
1984
  id: z.ZodString;
1984
1985
  type: z.ZodEnum<["DEPOSIT", "WITHDRAWAL", "BUY", "SELL", "COMMISSION", "BONUS", "ADJUSTMENT"]>;
1985
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
1986
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
1986
1987
  amount: z.ZodString;
1987
1988
  price: z.ZodNullable<z.ZodString>;
1988
1989
  quoteAmount: z.ZodNullable<z.ZodString>;
@@ -1994,7 +1995,7 @@ declare namespace GetTransactionsCommand {
1994
1995
  status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
1995
1996
  id: string;
1996
1997
  createdAt: string;
1997
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1998
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
1998
1999
  amount: string;
1999
2000
  price: string | null;
2000
2001
  quoteAmount: string | null;
@@ -2004,7 +2005,7 @@ declare namespace GetTransactionsCommand {
2004
2005
  status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
2005
2006
  id: string;
2006
2007
  createdAt: string;
2007
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
2008
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
2008
2009
  amount: string;
2009
2010
  price: string | null;
2010
2011
  quoteAmount: string | null;
@@ -2021,7 +2022,7 @@ declare namespace GetTransactionsCommand {
2021
2022
  status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
2022
2023
  id: string;
2023
2024
  createdAt: string;
2024
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
2025
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
2025
2026
  amount: string;
2026
2027
  price: string | null;
2027
2028
  quoteAmount: string | null;
@@ -2036,7 +2037,7 @@ declare namespace GetTransactionsCommand {
2036
2037
  status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED" | "CANCELLED";
2037
2038
  id: string;
2038
2039
  createdAt: string;
2039
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
2040
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
2040
2041
  amount: string;
2041
2042
  price: string | null;
2042
2043
  quoteAmount: string | null;
@@ -2961,8 +2962,8 @@ declare namespace GetPackagesCommand {
2961
2962
  sellIntervalDays: zod.ZodNullable<zod.ZodNumber>;
2962
2963
  nextSellAt: zod.ZodNullable<zod.ZodString>;
2963
2964
  balanceUsdt: zod.ZodString;
2964
- balanceWnmn: zod.ZodString;
2965
- wnmnPackageRate: zod.ZodString;
2965
+ balanceBnmn: zod.ZodString;
2966
+ bnmnPackageRate: zod.ZodString;
2966
2967
  tokenPrice: zod.ZodString;
2967
2968
  }, "strip", zod.ZodTypeAny, {
2968
2969
  sellIntervalDays: number | null;
@@ -2992,8 +2993,8 @@ declare namespace GetPackagesCommand {
2992
2993
  maxPriceUsd: string;
2993
2994
  nextSellAt: string | null;
2994
2995
  balanceUsdt: string;
2995
- balanceWnmn: string;
2996
- wnmnPackageRate: string;
2996
+ balanceBnmn: string;
2997
+ bnmnPackageRate: string;
2997
2998
  tokenPrice: string;
2998
2999
  }, {
2999
3000
  sellIntervalDays: number | null;
@@ -3023,8 +3024,8 @@ declare namespace GetPackagesCommand {
3023
3024
  maxPriceUsd: string;
3024
3025
  nextSellAt: string | null;
3025
3026
  balanceUsdt: string;
3026
- balanceWnmn: string;
3027
- wnmnPackageRate: string;
3027
+ balanceBnmn: string;
3028
+ bnmnPackageRate: string;
3028
3029
  tokenPrice: string;
3029
3030
  }>;
3030
3031
  type Response = PackagesOverview;
@@ -3034,13 +3035,13 @@ declare namespace BuyPackageCommand {
3034
3035
  const endpointDetails: EndpointDetails;
3035
3036
  const RequestSchema: z.ZodObject<{
3036
3037
  idempotencyKey: z.ZodString;
3037
- payWith: z.ZodDefault<z.ZodEnum<["USDT", "wNMN"]>>;
3038
+ payWith: z.ZodDefault<z.ZodEnum<["USDT", "bNMN"]>>;
3038
3039
  }, "strip", z.ZodTypeAny, {
3039
3040
  idempotencyKey: string;
3040
- payWith: "wNMN" | "USDT";
3041
+ payWith: "bNMN" | "USDT";
3041
3042
  }, {
3042
3043
  idempotencyKey: string;
3043
- payWith?: "wNMN" | "USDT" | undefined;
3044
+ payWith?: "bNMN" | "USDT" | undefined;
3044
3045
  }>;
3045
3046
  type Request = z.infer<typeof RequestSchema>;
3046
3047
  const ResponseSchema: z.ZodObject<{
@@ -3048,22 +3049,22 @@ declare namespace BuyPackageCommand {
3048
3049
  priceUsd: z.ZodString;
3049
3050
  nmnAmount: z.ZodString;
3050
3051
  tokenPrice: z.ZodString;
3051
- paidWith: z.ZodEnum<["USDT", "wNMN"]>;
3052
- wnmnSpent: z.ZodNullable<z.ZodString>;
3052
+ paidWith: z.ZodEnum<["USDT", "bNMN"]>;
3053
+ bnmnSpent: z.ZodNullable<z.ZodString>;
3053
3054
  }, "strip", z.ZodTypeAny, {
3054
3055
  priceUsd: string;
3055
3056
  tokenPrice: string;
3056
3057
  nmnAmount: string;
3057
3058
  purchaseId: string;
3058
- paidWith: "wNMN" | "USDT";
3059
- wnmnSpent: string | null;
3059
+ paidWith: "bNMN" | "USDT";
3060
+ bnmnSpent: string | null;
3060
3061
  }, {
3061
3062
  priceUsd: string;
3062
3063
  tokenPrice: string;
3063
3064
  nmnAmount: string;
3064
3065
  purchaseId: string;
3065
- paidWith: "wNMN" | "USDT";
3066
- wnmnSpent: string | null;
3066
+ paidWith: "bNMN" | "USDT";
3067
+ bnmnSpent: string | null;
3067
3068
  }>;
3068
3069
  type Response = z.infer<typeof ResponseSchema>;
3069
3070
  }
@@ -3283,7 +3284,7 @@ declare namespace ListWithdrawalsCommand {
3283
3284
  const ResponseSchema: z.ZodObject<{
3284
3285
  items: z.ZodArray<z.ZodObject<{
3285
3286
  id: z.ZodString;
3286
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3287
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3287
3288
  amount: z.ZodString;
3288
3289
  fee: z.ZodString;
3289
3290
  address: z.ZodString;
@@ -3293,7 +3294,7 @@ declare namespace ListWithdrawalsCommand {
3293
3294
  status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
3294
3295
  id: string;
3295
3296
  createdAt: string;
3296
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3297
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3297
3298
  amount: string;
3298
3299
  address: string;
3299
3300
  fee: string;
@@ -3301,7 +3302,7 @@ declare namespace ListWithdrawalsCommand {
3301
3302
  status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
3302
3303
  id: string;
3303
3304
  createdAt: string;
3304
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3305
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3305
3306
  amount: string;
3306
3307
  address: string;
3307
3308
  fee: string;
@@ -3311,7 +3312,7 @@ declare namespace ListWithdrawalsCommand {
3311
3312
  status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
3312
3313
  id: string;
3313
3314
  createdAt: string;
3314
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3315
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3315
3316
  amount: string;
3316
3317
  address: string;
3317
3318
  fee: string;
@@ -3321,7 +3322,7 @@ declare namespace ListWithdrawalsCommand {
3321
3322
  status: "FAILED" | "CANCELLED" | "AWAITING_CONFIRM" | "AWAITING_COOLOFF" | "QUEUED" | "SENT" | "CONFIRMED";
3322
3323
  id: string;
3323
3324
  createdAt: string;
3324
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3325
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3325
3326
  amount: string;
3326
3327
  address: string;
3327
3328
  fee: string;
@@ -3698,14 +3699,14 @@ type WheelSpinKind = z.infer<typeof WheelSpinKindSchema>;
3698
3699
  declare const WheelPrizeSchema: z.ZodObject<{
3699
3700
  id: z.ZodString;
3700
3701
  slot: z.ZodNumber;
3701
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3702
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3702
3703
  label: z.ZodNullable<z.ZodString>;
3703
3704
  amount: z.ZodString;
3704
3705
  valueUsd: z.ZodString;
3705
3706
  jackpot: z.ZodBoolean;
3706
3707
  }, "strip", z.ZodTypeAny, {
3707
3708
  id: string;
3708
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3709
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3709
3710
  amount: string;
3710
3711
  slot: number;
3711
3712
  label: string | null;
@@ -3713,7 +3714,7 @@ declare const WheelPrizeSchema: z.ZodObject<{
3713
3714
  jackpot: boolean;
3714
3715
  }, {
3715
3716
  id: string;
3716
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3717
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3717
3718
  amount: string;
3718
3719
  slot: number;
3719
3720
  label: string | null;
@@ -3724,7 +3725,7 @@ type WheelPrize = z.infer<typeof WheelPrizeSchema>;
3724
3725
  declare const WheelWinSchema: z.ZodObject<{
3725
3726
  id: z.ZodString;
3726
3727
  slot: z.ZodNumber;
3727
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3728
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3728
3729
  label: z.ZodNullable<z.ZodString>;
3729
3730
  amount: z.ZodString;
3730
3731
  valueUsd: z.ZodString;
@@ -3734,7 +3735,7 @@ declare const WheelWinSchema: z.ZodObject<{
3734
3735
  }, "strip", z.ZodTypeAny, {
3735
3736
  id: string;
3736
3737
  createdAt: string;
3737
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3738
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3738
3739
  amount: string;
3739
3740
  kind: "FREE" | "PAID";
3740
3741
  slot: number;
@@ -3744,7 +3745,7 @@ declare const WheelWinSchema: z.ZodObject<{
3744
3745
  }, {
3745
3746
  id: string;
3746
3747
  createdAt: string;
3747
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3748
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3748
3749
  amount: string;
3749
3750
  kind: "FREE" | "PAID";
3750
3751
  slot: number;
@@ -3765,14 +3766,14 @@ declare const WheelStatusSchema: z.ZodObject<{
3765
3766
  prizes: z.ZodArray<z.ZodObject<{
3766
3767
  id: z.ZodString;
3767
3768
  slot: z.ZodNumber;
3768
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3769
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3769
3770
  label: z.ZodNullable<z.ZodString>;
3770
3771
  amount: z.ZodString;
3771
3772
  valueUsd: z.ZodString;
3772
3773
  jackpot: z.ZodBoolean;
3773
3774
  }, "strip", z.ZodTypeAny, {
3774
3775
  id: string;
3775
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3776
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3776
3777
  amount: string;
3777
3778
  slot: number;
3778
3779
  label: string | null;
@@ -3780,7 +3781,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3780
3781
  jackpot: boolean;
3781
3782
  }, {
3782
3783
  id: string;
3783
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3784
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3784
3785
  amount: string;
3785
3786
  slot: number;
3786
3787
  label: string | null;
@@ -3790,7 +3791,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3790
3791
  history: z.ZodArray<z.ZodObject<{
3791
3792
  id: z.ZodString;
3792
3793
  slot: z.ZodNumber;
3793
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3794
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3794
3795
  label: z.ZodNullable<z.ZodString>;
3795
3796
  amount: z.ZodString;
3796
3797
  valueUsd: z.ZodString;
@@ -3800,7 +3801,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3800
3801
  }, "strip", z.ZodTypeAny, {
3801
3802
  id: string;
3802
3803
  createdAt: string;
3803
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3804
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3804
3805
  amount: string;
3805
3806
  kind: "FREE" | "PAID";
3806
3807
  slot: number;
@@ -3810,7 +3811,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3810
3811
  }, {
3811
3812
  id: string;
3812
3813
  createdAt: string;
3813
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3814
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3814
3815
  amount: string;
3815
3816
  kind: "FREE" | "PAID";
3816
3817
  slot: number;
@@ -3829,7 +3830,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3829
3830
  paidSpinsLeftToday: number;
3830
3831
  prizes: {
3831
3832
  id: string;
3832
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3833
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3833
3834
  amount: string;
3834
3835
  slot: number;
3835
3836
  label: string | null;
@@ -3839,7 +3840,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3839
3840
  history: {
3840
3841
  id: string;
3841
3842
  createdAt: string;
3842
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3843
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3843
3844
  amount: string;
3844
3845
  kind: "FREE" | "PAID";
3845
3846
  slot: number;
@@ -3858,7 +3859,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3858
3859
  paidSpinsLeftToday: number;
3859
3860
  prizes: {
3860
3861
  id: string;
3861
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3862
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3862
3863
  amount: string;
3863
3864
  slot: number;
3864
3865
  label: string | null;
@@ -3868,7 +3869,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3868
3869
  history: {
3869
3870
  id: string;
3870
3871
  createdAt: string;
3871
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3872
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3872
3873
  amount: string;
3873
3874
  kind: "FREE" | "PAID";
3874
3875
  slot: number;
@@ -3884,14 +3885,14 @@ declare const WheelSpinResultSchema: z.ZodObject<{
3884
3885
  prize: z.ZodObject<{
3885
3886
  id: z.ZodString;
3886
3887
  slot: z.ZodNumber;
3887
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3888
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3888
3889
  label: z.ZodNullable<z.ZodString>;
3889
3890
  amount: z.ZodString;
3890
3891
  valueUsd: z.ZodString;
3891
3892
  jackpot: z.ZodBoolean;
3892
3893
  }, "strip", z.ZodTypeAny, {
3893
3894
  id: string;
3894
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3895
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3895
3896
  amount: string;
3896
3897
  slot: number;
3897
3898
  label: string | null;
@@ -3899,7 +3900,7 @@ declare const WheelSpinResultSchema: z.ZodObject<{
3899
3900
  jackpot: boolean;
3900
3901
  }, {
3901
3902
  id: string;
3902
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3903
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3903
3904
  amount: string;
3904
3905
  slot: number;
3905
3906
  label: string | null;
@@ -3921,7 +3922,7 @@ declare const WheelSpinResultSchema: z.ZodObject<{
3921
3922
  spinId: string;
3922
3923
  prize: {
3923
3924
  id: string;
3924
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3925
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3925
3926
  amount: string;
3926
3927
  slot: number;
3927
3928
  label: string | null;
@@ -3938,7 +3939,7 @@ declare const WheelSpinResultSchema: z.ZodObject<{
3938
3939
  spinId: string;
3939
3940
  prize: {
3940
3941
  id: string;
3941
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3942
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3942
3943
  amount: string;
3943
3944
  slot: number;
3944
3945
  label: string | null;
@@ -3962,14 +3963,14 @@ declare namespace GetWheelCommand {
3962
3963
  prizes: z.ZodArray<z.ZodObject<{
3963
3964
  id: z.ZodString;
3964
3965
  slot: z.ZodNumber;
3965
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3966
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3966
3967
  label: z.ZodNullable<z.ZodString>;
3967
3968
  amount: z.ZodString;
3968
3969
  valueUsd: z.ZodString;
3969
3970
  jackpot: z.ZodBoolean;
3970
3971
  }, "strip", z.ZodTypeAny, {
3971
3972
  id: string;
3972
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3973
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3973
3974
  amount: string;
3974
3975
  slot: number;
3975
3976
  label: string | null;
@@ -3977,7 +3978,7 @@ declare namespace GetWheelCommand {
3977
3978
  jackpot: boolean;
3978
3979
  }, {
3979
3980
  id: string;
3980
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3981
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
3981
3982
  amount: string;
3982
3983
  slot: number;
3983
3984
  label: string | null;
@@ -3987,7 +3988,7 @@ declare namespace GetWheelCommand {
3987
3988
  history: z.ZodArray<z.ZodObject<{
3988
3989
  id: z.ZodString;
3989
3990
  slot: z.ZodNumber;
3990
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3991
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
3991
3992
  label: z.ZodNullable<z.ZodString>;
3992
3993
  amount: z.ZodString;
3993
3994
  valueUsd: z.ZodString;
@@ -3997,7 +3998,7 @@ declare namespace GetWheelCommand {
3997
3998
  }, "strip", z.ZodTypeAny, {
3998
3999
  id: string;
3999
4000
  createdAt: string;
4000
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4001
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4001
4002
  amount: string;
4002
4003
  kind: "FREE" | "PAID";
4003
4004
  slot: number;
@@ -4007,7 +4008,7 @@ declare namespace GetWheelCommand {
4007
4008
  }, {
4008
4009
  id: string;
4009
4010
  createdAt: string;
4010
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4011
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4011
4012
  amount: string;
4012
4013
  kind: "FREE" | "PAID";
4013
4014
  slot: number;
@@ -4026,7 +4027,7 @@ declare namespace GetWheelCommand {
4026
4027
  paidSpinsLeftToday: number;
4027
4028
  prizes: {
4028
4029
  id: string;
4029
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4030
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4030
4031
  amount: string;
4031
4032
  slot: number;
4032
4033
  label: string | null;
@@ -4036,7 +4037,7 @@ declare namespace GetWheelCommand {
4036
4037
  history: {
4037
4038
  id: string;
4038
4039
  createdAt: string;
4039
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4040
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4040
4041
  amount: string;
4041
4042
  kind: "FREE" | "PAID";
4042
4043
  slot: number;
@@ -4055,7 +4056,7 @@ declare namespace GetWheelCommand {
4055
4056
  paidSpinsLeftToday: number;
4056
4057
  prizes: {
4057
4058
  id: string;
4058
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4059
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4059
4060
  amount: string;
4060
4061
  slot: number;
4061
4062
  label: string | null;
@@ -4065,7 +4066,7 @@ declare namespace GetWheelCommand {
4065
4066
  history: {
4066
4067
  id: string;
4067
4068
  createdAt: string;
4068
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4069
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4069
4070
  amount: string;
4070
4071
  kind: "FREE" | "PAID";
4071
4072
  slot: number;
@@ -4092,14 +4093,14 @@ declare namespace SpinWheelCommand {
4092
4093
  prize: z.ZodObject<{
4093
4094
  id: z.ZodString;
4094
4095
  slot: z.ZodNumber;
4095
- asset: z.ZodEnum<["NMN", "wNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
4096
+ asset: z.ZodEnum<["NMN", "bNMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
4096
4097
  label: z.ZodNullable<z.ZodString>;
4097
4098
  amount: z.ZodString;
4098
4099
  valueUsd: z.ZodString;
4099
4100
  jackpot: z.ZodBoolean;
4100
4101
  }, "strip", z.ZodTypeAny, {
4101
4102
  id: string;
4102
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4103
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4103
4104
  amount: string;
4104
4105
  slot: number;
4105
4106
  label: string | null;
@@ -4107,7 +4108,7 @@ declare namespace SpinWheelCommand {
4107
4108
  jackpot: boolean;
4108
4109
  }, {
4109
4110
  id: string;
4110
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4111
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4111
4112
  amount: string;
4112
4113
  slot: number;
4113
4114
  label: string | null;
@@ -4129,7 +4130,7 @@ declare namespace SpinWheelCommand {
4129
4130
  spinId: string;
4130
4131
  prize: {
4131
4132
  id: string;
4132
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4133
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4133
4134
  amount: string;
4134
4135
  slot: number;
4135
4136
  label: string | null;
@@ -4146,7 +4147,7 @@ declare namespace SpinWheelCommand {
4146
4147
  spinId: string;
4147
4148
  prize: {
4148
4149
  id: string;
4149
- asset: "NMN" | "wNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4150
+ asset: "NMN" | "bNMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
4150
4151
  amount: string;
4151
4152
  slot: number;
4152
4153
  label: string | null;
@@ -6395,4 +6396,4 @@ declare const REST_API: {
6395
6396
  declare const API_PREFIX = "/api";
6396
6397
  declare const API_VERSION = "v1";
6397
6398
 
6398
- 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 };