@heliofi/launchpad-common 1.3.2 → 1.3.4
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/src/domain/constants/currency.d.ts +2 -1
- package/dist/src/domain/constants/currency.js +4 -0
- package/dist/src/domain/constants/currency.js.map +1 -1
- package/dist/src/domain/constants/curveType.d.ts +2 -1
- package/dist/src/domain/constants/curveType.js +1 -0
- package/dist/src/domain/constants/curveType.js.map +1 -1
- package/dist/src/domain/curves/BaseConstantProductCurveV1.d.ts +23 -0
- package/dist/src/domain/curves/BaseConstantProductCurveV1.js +141 -0
- package/dist/src/domain/curves/BaseConstantProductCurveV1.js.map +1 -0
- package/dist/src/domain/curves/BaseCurve.d.ts +2 -1
- package/dist/src/domain/curves/BaseCurve.js.map +1 -1
- package/dist/src/domain/curves/ConstantProductCurve.d.ts +20 -0
- package/dist/src/domain/curves/ConstantProductCurve.js +120 -0
- package/dist/src/domain/curves/ConstantProductCurve.js.map +1 -0
- package/dist/src/domain/curves/ConstantProductCurveV2.d.ts +6 -0
- package/dist/src/domain/curves/ConstantProductCurveV2.js +32 -0
- package/dist/src/domain/curves/ConstantProductCurveV2.js.map +1 -0
- package/dist/src/domain/curves/FlatCurveV1.d.ts +14 -0
- package/dist/src/domain/curves/FlatCurveV1.js +60 -0
- package/dist/src/domain/curves/FlatCurveV1.js.map +1 -0
- package/dist/src/domain/curves/LinearCurveV1.d.ts +1 -0
- package/dist/src/domain/curves/LinearCurveV1.js +3 -0
- package/dist/src/domain/curves/LinearCurveV1.js.map +1 -1
- package/dist/src/domain/curves/SonicConstantProductCurveV1.d.ts +11 -0
- package/dist/src/domain/curves/SonicConstantProductCurveV1.js +29 -0
- package/dist/src/domain/curves/SonicConstantProductCurveV1.js.map +1 -0
- package/dist/src/domain/curves/getCurve.js +4 -0
- package/dist/src/domain/curves/getCurve.js.map +1 -1
- package/dist/src/domain/curves/getDefaultCurveByBlockchain.d.ts +5 -0
- package/dist/src/domain/curves/getDefaultCurveByBlockchain.js +21 -0
- package/dist/src/domain/curves/getDefaultCurveByBlockchain.js.map +1 -0
- package/dist/src/domain/curves/index.d.ts +1 -0
- package/dist/src/domain/curves/index.js +1 -0
- package/dist/src/domain/curves/index.js.map +1 -1
- package/dist/src/domain/curves/tests/BaseConstantProductCurveV1.spec.d.ts +1 -0
- package/dist/src/domain/curves/tests/BaseConstantProductCurveV1.spec.js +56 -0
- package/dist/src/domain/curves/tests/BaseConstantProductCurveV1.spec.js.map +1 -0
- package/dist/src/domain/curves/tests/FlatCurveV1.spec.d.ts +1 -0
- package/dist/src/domain/curves/tests/FlatCurveV1.spec.js +130 -0
- package/dist/src/domain/curves/tests/FlatCurveV1.spec.js.map +1 -0
- package/dist/src/domain/curves/typeUtils.d.ts +3 -0
- package/dist/src/domain/curves/typeUtils.js +24 -0
- package/dist/src/domain/curves/typeUtils.js.map +1 -0
- package/dist/src/domain/curves/utils.d.ts +3 -0
- package/dist/src/domain/curves/utils.js +16 -0
- package/dist/src/domain/curves/utils.js.map +1 -0
- package/dist/src/domain/model/airlock/entities/TotalClaimedResponse.entity.d.ts +4 -0
- package/dist/src/domain/model/airlock/entities/TotalClaimedResponse.entity.js +8 -0
- package/dist/src/domain/model/airlock/entities/TotalClaimedResponse.entity.js.map +1 -0
- package/dist/src/domain/model/lpLockDetails/dtos/AddAllocation.dto.d.ts +7 -0
- package/dist/src/domain/model/lpLockDetails/dtos/AddAllocation.dto.js +38 -0
- package/dist/src/domain/model/lpLockDetails/dtos/AddAllocation.dto.js.map +1 -0
- package/dist/src/domain/model/lpLockDetails/index.d.ts +1 -0
- package/dist/src/domain/model/lpLockDetails/index.js +18 -0
- package/dist/src/domain/model/lpLockDetails/index.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heliofi/launchpad-common",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.4",
|
|
5
5
|
"description": "Common package for launchpad",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"license": "ISC",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@solana/web3.js": "
|
|
17
|
+
"@solana/web3.js": "1.95.8",
|
|
18
18
|
"bignumber.js": "9.1.1",
|
|
19
19
|
"bs58": "^5.0.0",
|
|
20
20
|
"class-transformer": "^0.5.1",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"ts-loader": "^9.3.1",
|
|
28
28
|
"typescript": "4.8.4"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "491153db290fab3a585878b8d51f11ddca9dc90c"
|
|
31
31
|
}
|