@heliofi/launchpad-common 1.6.41 → 1.6.42
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/isMoonit.js +1 -1
- package/dist/src/domain/model/cto-request/constants.d.ts +5 -0
- package/dist/src/domain/model/cto-request/constants.js +10 -0
- package/dist/src/domain/model/cto-request/constants.js.map +1 -0
- package/dist/src/domain/model/cto-request/dtos/CreateCtoRequest.dto.d.ts +7 -0
- package/dist/src/domain/model/cto-request/dtos/CreateCtoRequest.dto.js +42 -0
- package/dist/src/domain/model/cto-request/dtos/CreateCtoRequest.dto.js.map +1 -0
- package/dist/src/domain/model/cto-request/dtos/index.d.ts +1 -0
- package/dist/src/domain/model/{fun/entities → cto-request/dtos}/index.js +1 -1
- package/dist/src/domain/model/cto-request/dtos/index.js.map +1 -0
- package/dist/src/domain/model/cto-request/entities/CtoRequest.entity.d.ts +12 -0
- package/dist/src/domain/model/cto-request/entities/CtoRequest.entity.js +8 -0
- package/dist/src/domain/model/cto-request/entities/CtoRequest.entity.js.map +1 -0
- package/dist/src/domain/model/cto-request/entities/index.d.ts +1 -0
- package/dist/src/domain/model/cto-request/entities/index.js +18 -0
- package/dist/src/domain/model/cto-request/entities/index.js.map +1 -0
- package/dist/src/domain/model/cto-request/index.d.ts +3 -0
- package/dist/src/domain/model/cto-request/index.js +20 -0
- package/dist/src/domain/model/cto-request/index.js.map +1 -0
- package/dist/src/domain/model/fun/dtos/GetAdvancedTokensList.dto.d.ts +2 -0
- package/dist/src/domain/model/fun/dtos/GetAdvancedTokensList.dto.js +14 -0
- package/dist/src/domain/model/fun/dtos/GetAdvancedTokensList.dto.js.map +1 -1
- package/dist/src/domain/model/index.d.ts +1 -0
- package/dist/src/domain/model/index.js +1 -0
- package/dist/src/domain/model/index.js.map +1 -1
- package/dist/src/domain/model/top-token-holders/constants.d.ts +1 -1
- package/dist/src/domain/model/top-token-holders/constants.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/src/domain/model/fun/entities/FunTokensList.entity.d.ts +0 -21
- package/dist/src/domain/model/fun/entities/FunTokensList.entity.js +0 -8
- package/dist/src/domain/model/fun/entities/FunTokensList.entity.js.map +0 -1
- package/dist/src/domain/model/fun/entities/index.d.ts +0 -1
- package/dist/src/domain/model/fun/entities/index.js.map +0 -1
- package/dist/src/domain/model/lp-token-lock-details/entities/FeeReciever.entity.d.ts +0 -8
- package/dist/src/domain/model/lp-token-lock-details/entities/FeeReciever.entity.js +0 -8
- package/dist/src/domain/model/lp-token-lock-details/entities/FeeReciever.entity.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heliofi/launchpad-common",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.42",
|
|
5
5
|
"description": "Common package for launchpad",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"ts-loader": "^9.3.1",
|
|
30
30
|
"typescript": "4.8.4"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "0bc37211ccf01aea0ae5da5b5e5e020a4a13075c"
|
|
33
33
|
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Entity } from '../../entity';
|
|
2
|
-
export declare class FunTokensListEntity extends Entity {
|
|
3
|
-
name: string;
|
|
4
|
-
description: string;
|
|
5
|
-
symbol: string;
|
|
6
|
-
icon: string;
|
|
7
|
-
x?: string;
|
|
8
|
-
telegram?: string;
|
|
9
|
-
dexScreenerUrl?: string;
|
|
10
|
-
createdAt: string;
|
|
11
|
-
volumeCount: number;
|
|
12
|
-
volumeUSD: string;
|
|
13
|
-
commentCount: string;
|
|
14
|
-
progressPercent: number;
|
|
15
|
-
mintAddress: string;
|
|
16
|
-
profileId: string;
|
|
17
|
-
migrationDex: string;
|
|
18
|
-
curveType: string;
|
|
19
|
-
marketcap: string;
|
|
20
|
-
}
|
|
21
|
-
export declare type FunTokensListResponseEntity = FunTokensListEntity[];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FunTokensListEntity = void 0;
|
|
4
|
-
const entity_1 = require("../../entity");
|
|
5
|
-
class FunTokensListEntity extends entity_1.Entity {
|
|
6
|
-
}
|
|
7
|
-
exports.FunTokensListEntity = FunTokensListEntity;
|
|
8
|
-
//# sourceMappingURL=FunTokensList.entity.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FunTokensList.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/fun/entities/FunTokensList.entity.ts"],"names":[],"mappings":";;;AAAA,yCAAsC;AAEtC,MAAa,mBAAoB,SAAQ,eAAM;CAkC9C;AAlCD,kDAkCC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './FunTokensList.entity';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/fun/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAuC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FeeReciever = void 0;
|
|
4
|
-
const entity_1 = require("../../entity");
|
|
5
|
-
class FeeReciever extends entity_1.Entity {
|
|
6
|
-
}
|
|
7
|
-
exports.FeeReciever = FeeReciever;
|
|
8
|
-
//# sourceMappingURL=FeeReciever.entity.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FeeReciever.entity.js","sourceRoot":"","sources":["../../../../../../src/domain/model/lp-token-lock-details/entities/FeeReciever.entity.ts"],"names":[],"mappings":";;;AACA,yCAAsC;AAEtC,MAAa,WAAY,SAAQ,eAAM;CAQtC;AARD,kCAQC"}
|