@levrbet/shared 0.5.57 → 0.5.59

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.
@@ -0,0 +1,3 @@
1
+ import { LevrEnv } from "../../types";
2
+ export declare const MIN_FREE_BET_AMOUNT: Record<LevrEnv, bigint>;
3
+ export declare const MAX_FREE_BET_AMOUNT = 10000000000n;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MAX_FREE_BET_AMOUNT = exports.MIN_FREE_BET_AMOUNT = void 0;
4
+ const types_1 = require("../../types");
5
+ exports.MIN_FREE_BET_AMOUNT = {
6
+ [types_1.LevrEnv.LOCAL]: 10000000n, // 10 USDC
7
+ [types_1.LevrEnv.DEV]: 10000000n, // 10 USDC
8
+ [types_1.LevrEnv.STAGING]: 10000000n, // 10 USDC
9
+ [types_1.LevrEnv.PROD]: 10000000n, // 10 USDC
10
+ };
11
+ exports.MAX_FREE_BET_AMOUNT = 10000000000n; // 10,000 USDC
12
+ //# sourceMappingURL=free-bet.config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"free-bet.config.js","sourceRoot":"","sources":["../../../../src/core/config/levr/free-bet.config.ts"],"names":[],"mappings":";;;AAAA,uCAAqC;AAExB,QAAA,mBAAmB,GAA4B;IACxD,CAAC,eAAO,CAAC,KAAK,CAAC,EAAE,SAAW,EAAE,UAAU;IACxC,CAAC,eAAO,CAAC,GAAG,CAAC,EAAE,SAAW,EAAE,UAAU;IACtC,CAAC,eAAO,CAAC,OAAO,CAAC,EAAE,SAAW,EAAE,UAAU;IAC1C,CAAC,eAAO,CAAC,IAAI,CAAC,EAAE,SAAW,EAAE,UAAU;CAC1C,CAAA;AAEY,QAAA,mBAAmB,GAAG,YAAe,CAAA,CAAC,cAAc"}
@@ -1 +1,2 @@
1
1
  export * from "./sport.config";
2
+ export * from "./free-bet.config";
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./sport.config"), exports);
18
+ __exportStar(require("./free-bet.config"), exports);
18
19
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/core/config/levr/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA8B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/core/config/levr/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA8B;AAC9B,oDAAiC"}
@@ -36,6 +36,7 @@ export interface MarketPosition {
36
36
  kind: BetAction;
37
37
  disabled?: boolean;
38
38
  };
39
+ isFreeBet?: boolean;
39
40
  }
40
41
  export type BetStatus = "live" | "pregame" | "won" | "lost" | "open" | "cashout" | "pending" | "resulted" | "refunded" | "liquidated";
41
42
  export type BetAction = "cashout" | "redeem" | "view" | "sell" | "none";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@levrbet/shared",
3
- "version": "0.5.57",
3
+ "version": "0.5.59",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {