@jup-ag/platform-list 1.2.25 → 1.2.26
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/platforms/blueshift.js +12 -0
- package/dist/platforms/bonfida.js +27 -1
- package/dist/platforms/domin8.d.ts +4 -0
- package/dist/platforms/domin8.js +25 -0
- package/dist/platforms/drift.d.ts +1 -0
- package/dist/platforms/drift.js +12 -1
- package/dist/platforms/flexlend.d.ts +1 -0
- package/dist/platforms/flexlend.js +14 -2
- package/dist/platforms/hawksight.d.ts +1 -0
- package/dist/platforms/hawksight.js +14 -2
- package/dist/platforms/helio.d.ts +5 -0
- package/dist/platforms/helio.js +36 -0
- package/dist/platforms/index.js +6 -0
- package/dist/platforms/lodesupply.js +13 -1
- package/dist/platforms/neutral.d.ts +1 -0
- package/dist/platforms/neutral.js +27 -2
- package/dist/platforms/nxfinance.d.ts +1 -0
- package/dist/platforms/nxfinance.js +13 -1
- package/dist/platforms/orderly.d.ts +1 -0
- package/dist/platforms/orderly.js +13 -2
- package/dist/platforms/port.d.ts +1 -0
- package/dist/platforms/port.js +14 -2
- package/dist/platforms/pudgy.js +13 -1
- package/dist/platforms/ratex.d.ts +2 -0
- package/dist/platforms/ratex.js +54 -2
- package/dist/platforms/spdr.js +13 -1
- package/dist/platforms/vectis.d.ts +1 -0
- package/dist/platforms/vectis.js +14 -2
- package/dist/platforms/wink.d.ts +1 -0
- package/dist/platforms/wink.js +14 -2
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.services = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
4
5
|
exports.platform = {
|
|
5
6
|
id: "blueshift",
|
|
6
7
|
name: "Blueshift",
|
|
@@ -11,4 +12,15 @@ exports.platform = {
|
|
|
11
12
|
},
|
|
12
13
|
tags: ["dapp"],
|
|
13
14
|
};
|
|
15
|
+
const contract = {
|
|
16
|
+
name: "Learn",
|
|
17
|
+
address: "shftxrF75jt6u1nXCkkiarjwz4ENqm1tnummZZuBrDp",
|
|
18
|
+
networkId: types_1.NetworkId.solana,
|
|
19
|
+
};
|
|
20
|
+
const service = {
|
|
21
|
+
id: `${exports.platform.id}-learn`,
|
|
22
|
+
name: "Learn",
|
|
23
|
+
platformId: exports.platform.id,
|
|
24
|
+
contractsRaw: [contract],
|
|
25
|
+
};
|
|
14
26
|
exports.services = [];
|
|
@@ -18,6 +18,16 @@ exports.platform = {
|
|
|
18
18
|
},
|
|
19
19
|
tokens: ["EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp"],
|
|
20
20
|
};
|
|
21
|
+
const contract = {
|
|
22
|
+
name: "Offer",
|
|
23
|
+
address: "85iDfUvr3HJyLM2zcq5BXSiDvUWfw6cSE1FfNBo8Ap29",
|
|
24
|
+
networkId: types_1.NetworkId.solana,
|
|
25
|
+
};
|
|
26
|
+
const airdropContract = {
|
|
27
|
+
name: "Airdrop",
|
|
28
|
+
address: "bMersFdXPWiRzjqmbviCRMvwvN1FpRmATaqrF894CbU",
|
|
29
|
+
networkId: types_1.NetworkId.solana,
|
|
30
|
+
};
|
|
21
31
|
const recordContract = {
|
|
22
32
|
name: "Records Program",
|
|
23
33
|
address: "HP3D4D1ZCmohQGFVms2SS4LCANgJyksBf5s1F77FuFjZ",
|
|
@@ -33,10 +43,26 @@ const registrarContract = {
|
|
|
33
43
|
address: "jCebN34bUfdeUYJT13J1yG16XWQpt5PDx6Mse9GUqhR",
|
|
34
44
|
networkId: types_1.NetworkId.solana,
|
|
35
45
|
};
|
|
46
|
+
const airdropService = {
|
|
47
|
+
id: `${exports.platform.id}-airdrop`,
|
|
48
|
+
name: "Airdrop",
|
|
49
|
+
platformId: exports.platform.id,
|
|
50
|
+
contractsRaw: [airdropContract],
|
|
51
|
+
};
|
|
52
|
+
const offerService = {
|
|
53
|
+
id: `${exports.platform.id}-offers`,
|
|
54
|
+
name: "Offers",
|
|
55
|
+
platformId: exports.platform.id,
|
|
56
|
+
contractsRaw: [contract],
|
|
57
|
+
};
|
|
36
58
|
exports.mainService = {
|
|
37
59
|
id: `${exports.platform.id}-domaine-name`,
|
|
38
60
|
name: "Name Service",
|
|
39
61
|
platformId: exports.platform.id,
|
|
40
62
|
contractsRaw: [nameServiceContract, registrarContract, recordContract],
|
|
41
63
|
};
|
|
42
|
-
exports.services = [
|
|
64
|
+
exports.services = [
|
|
65
|
+
exports.mainService,
|
|
66
|
+
airdropService,
|
|
67
|
+
offerService,
|
|
68
|
+
];
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.service = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "domin8",
|
|
7
|
+
name: "Domin8",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://www.domin8.fun/",
|
|
10
|
+
twitter: "https://x.com/domin8Arena",
|
|
11
|
+
},
|
|
12
|
+
tags: ["gaming", "dapp"],
|
|
13
|
+
};
|
|
14
|
+
const contract = {
|
|
15
|
+
name: "Game",
|
|
16
|
+
address: "7bHYHZVu7kWRU4xf7DWypCvefWvuDqW1CqVfsuwdGiR7",
|
|
17
|
+
networkId: types_1.NetworkId.solana,
|
|
18
|
+
};
|
|
19
|
+
exports.service = {
|
|
20
|
+
id: "domin8-game",
|
|
21
|
+
name: "Game",
|
|
22
|
+
platformId: exports.platform.id,
|
|
23
|
+
contractsRaw: [contract],
|
|
24
|
+
};
|
|
25
|
+
exports.services = [exports.service];
|
|
@@ -3,4 +3,5 @@ export declare const platform: PlatformRaw;
|
|
|
3
3
|
export declare const perpsService: ServiceRaw;
|
|
4
4
|
export declare const marketMakerService: ServiceRaw;
|
|
5
5
|
export declare const airdropService: ServiceRaw;
|
|
6
|
+
export declare const vaultsService: ServiceRaw;
|
|
6
7
|
export declare const services: ServiceRaw[];
|
package/dist/platforms/drift.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.airdropService = exports.marketMakerService = exports.perpsService = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.vaultsService = exports.airdropService = exports.marketMakerService = exports.perpsService = exports.platform = void 0;
|
|
4
4
|
const types_1 = require("../types");
|
|
5
5
|
exports.platform = {
|
|
6
6
|
id: "drift",
|
|
@@ -22,6 +22,11 @@ const contract = {
|
|
|
22
22
|
address: "dRiftyHA39MWEi3m9aunc5MzRF1JYuBsbn6VPcn33UH",
|
|
23
23
|
networkId: types_1.NetworkId.solana,
|
|
24
24
|
};
|
|
25
|
+
const vaultsContract = {
|
|
26
|
+
name: "Drift Vaults",
|
|
27
|
+
address: "vAuLTsyrvSfZRuRB3XgvkPwNGgYSs9YRYymVebLKoxR",
|
|
28
|
+
networkId: types_1.NetworkId.solana,
|
|
29
|
+
};
|
|
25
30
|
const proxyContract = {
|
|
26
31
|
name: "Jit Proxy",
|
|
27
32
|
address: "J1TnP8zvVxbtF5KFp5xRmWuvG9McnhzmBd9XGfCyuxFP",
|
|
@@ -50,6 +55,12 @@ exports.airdropService = {
|
|
|
50
55
|
platformId: exports.platform.id,
|
|
51
56
|
contractsRaw: [airdropContract],
|
|
52
57
|
};
|
|
58
|
+
exports.vaultsService = {
|
|
59
|
+
id: `${exports.platform.id}-vaults`,
|
|
60
|
+
name: "Vaults",
|
|
61
|
+
platformId: exports.platform.id,
|
|
62
|
+
contractsRaw: [vaultsContract],
|
|
63
|
+
};
|
|
53
64
|
exports.services = [
|
|
54
65
|
exports.perpsService,
|
|
55
66
|
exports.marketMakerService,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.service = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
4
5
|
exports.platform = {
|
|
5
6
|
id: "flexlend",
|
|
6
7
|
name: "Lulo",
|
|
@@ -16,4 +17,15 @@ exports.platform = {
|
|
|
16
17
|
},
|
|
17
18
|
tags: ["dapp"],
|
|
18
19
|
};
|
|
19
|
-
|
|
20
|
+
const contract = {
|
|
21
|
+
name: "Router",
|
|
22
|
+
address: "FL3X2pRsQ9zHENpZSKDRREtccwJuei8yg9fwDu9UN69Q",
|
|
23
|
+
networkId: types_1.NetworkId.solana,
|
|
24
|
+
};
|
|
25
|
+
exports.service = {
|
|
26
|
+
id: "flexlend-router",
|
|
27
|
+
name: "Router",
|
|
28
|
+
platformId: exports.platform.id,
|
|
29
|
+
contractsRaw: [contract],
|
|
30
|
+
};
|
|
31
|
+
exports.services = [exports.service];
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.mainService = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
4
5
|
exports.platform = {
|
|
5
6
|
id: "hawksight",
|
|
6
7
|
name: "HawkFi",
|
|
@@ -15,4 +16,15 @@ exports.platform = {
|
|
|
15
16
|
},
|
|
16
17
|
tags: ["dapp"],
|
|
17
18
|
};
|
|
18
|
-
|
|
19
|
+
const mainContract = {
|
|
20
|
+
name: "Main",
|
|
21
|
+
address: "FqGg2Y1FNxMiGd51Q6UETixQWkF5fB92MysbYogRJb3P",
|
|
22
|
+
networkId: types_1.NetworkId.solana,
|
|
23
|
+
};
|
|
24
|
+
exports.mainService = {
|
|
25
|
+
id: `${exports.platform.id}-core`,
|
|
26
|
+
name: "Core",
|
|
27
|
+
platformId: exports.platform.id,
|
|
28
|
+
contractsRaw: [mainContract],
|
|
29
|
+
};
|
|
30
|
+
exports.services = [exports.mainService];
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.paymentV2Service = exports.paymentService = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "helio",
|
|
7
|
+
name: "MoonPay Commerce (Helio)",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://www.hel.io/",
|
|
10
|
+
twitter: "https://x.com/MoonPayCommerce",
|
|
11
|
+
},
|
|
12
|
+
tags: ["dapp"],
|
|
13
|
+
};
|
|
14
|
+
const contractV2 = {
|
|
15
|
+
name: "Payment",
|
|
16
|
+
address: "ENicYBBNZQ91toN7ggmTxnDGZW14uv9UkumN7XBGeYJ4",
|
|
17
|
+
networkId: types_1.NetworkId.solana,
|
|
18
|
+
};
|
|
19
|
+
const contractV1 = {
|
|
20
|
+
name: "Payment V1",
|
|
21
|
+
address: "3KPRuKWxV6PtneZXbokMBwdF4T9brCFx7FcmKJ2tPqqt",
|
|
22
|
+
networkId: types_1.NetworkId.solana,
|
|
23
|
+
};
|
|
24
|
+
exports.paymentService = {
|
|
25
|
+
id: `${exports.platform.id}-payment`,
|
|
26
|
+
name: "Payment",
|
|
27
|
+
platformId: exports.platform.id,
|
|
28
|
+
contractsRaw: [contractV2],
|
|
29
|
+
};
|
|
30
|
+
exports.paymentV2Service = {
|
|
31
|
+
id: `${exports.platform.id}-payment-v1`,
|
|
32
|
+
name: "Payment V1",
|
|
33
|
+
platformId: exports.platform.id,
|
|
34
|
+
contractsRaw: [contractV1],
|
|
35
|
+
};
|
|
36
|
+
exports.services = [exports.paymentService, exports.paymentV2Service];
|
package/dist/platforms/index.js
CHANGED
|
@@ -89,6 +89,7 @@ const degencoinflip = __importStar(require("./degencoinflip"));
|
|
|
89
89
|
const degods = __importStar(require("./degods"));
|
|
90
90
|
const dflow = __importStar(require("./dflow"));
|
|
91
91
|
const divvy = __importStar(require("./divvy"));
|
|
92
|
+
const domin8 = __importStar(require("./domin8"));
|
|
92
93
|
const doubleup = __importStar(require("./doubleup"));
|
|
93
94
|
const drift = __importStar(require("./drift"));
|
|
94
95
|
const drip = __importStar(require("./drip"));
|
|
@@ -123,6 +124,7 @@ const haven = __importStar(require("./haven"));
|
|
|
123
124
|
const hawksight = __importStar(require("./hawksight"));
|
|
124
125
|
const hedgehog = __importStar(require("./hedgehog"));
|
|
125
126
|
const hedgy = __importStar(require("./hedgy"));
|
|
127
|
+
const helio = __importStar(require("./helio"));
|
|
126
128
|
const helium = __importStar(require("./helium"));
|
|
127
129
|
const helius = __importStar(require("./helius"));
|
|
128
130
|
const holdium = __importStar(require("./holdium"));
|
|
@@ -331,6 +333,7 @@ exports.platforms = [
|
|
|
331
333
|
degods.platform,
|
|
332
334
|
dflow.platform,
|
|
333
335
|
divvy.platform,
|
|
336
|
+
domin8.platform,
|
|
334
337
|
doubleup.platform,
|
|
335
338
|
drift.platform,
|
|
336
339
|
drip.platform,
|
|
@@ -365,6 +368,7 @@ exports.platforms = [
|
|
|
365
368
|
hawksight.platform,
|
|
366
369
|
hedgehog.platform,
|
|
367
370
|
hedgy.platform,
|
|
371
|
+
helio.platform,
|
|
368
372
|
helium.platform,
|
|
369
373
|
helius.platform,
|
|
370
374
|
holdium.platform,
|
|
@@ -574,6 +578,7 @@ exports.services = [
|
|
|
574
578
|
...degods.services,
|
|
575
579
|
...dflow.services,
|
|
576
580
|
...divvy.services,
|
|
581
|
+
...domin8.services,
|
|
577
582
|
...doubleup.services,
|
|
578
583
|
...drift.services,
|
|
579
584
|
...drip.services,
|
|
@@ -608,6 +613,7 @@ exports.services = [
|
|
|
608
613
|
...hawksight.services,
|
|
609
614
|
...hedgehog.services,
|
|
610
615
|
...hedgy.services,
|
|
616
|
+
...helio.services,
|
|
611
617
|
...helium.services,
|
|
612
618
|
...helius.services,
|
|
613
619
|
...holdium.services,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.services = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
4
5
|
exports.platform = {
|
|
5
6
|
id: "lodesupply",
|
|
6
7
|
name: "LodeSupply",
|
|
@@ -11,4 +12,15 @@ exports.platform = {
|
|
|
11
12
|
twitter: "https://x.com/lode_supply",
|
|
12
13
|
},
|
|
13
14
|
};
|
|
14
|
-
|
|
15
|
+
const v3Contract = {
|
|
16
|
+
name: "Mining",
|
|
17
|
+
address: "main99FJE8twaLPzw9nr3GqnSTVg8h4nyiMEDutnx64",
|
|
18
|
+
networkId: types_1.NetworkId.solana,
|
|
19
|
+
};
|
|
20
|
+
const v3Service = {
|
|
21
|
+
id: `${exports.platform.id}-v3`,
|
|
22
|
+
name: "V3",
|
|
23
|
+
platformId: exports.platform.id,
|
|
24
|
+
contractsRaw: [v3Contract],
|
|
25
|
+
};
|
|
26
|
+
exports.services = [v3Service];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.strategiesService = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.vaultsService = exports.strategiesService = exports.platform = void 0;
|
|
4
4
|
const types_1 = require("../types");
|
|
5
5
|
exports.platform = {
|
|
6
6
|
id: "neutral",
|
|
@@ -22,10 +22,35 @@ const contract = {
|
|
|
22
22
|
address: "BUNDDh4P5XviMm1f3gCvnq2qKx6TGosAGnoUK12e7cXU",
|
|
23
23
|
networkId: types_1.NetworkId.solana,
|
|
24
24
|
};
|
|
25
|
+
const neutral1VaultsContract = {
|
|
26
|
+
name: "Neutral Vaults",
|
|
27
|
+
address: "9Fcn3Fd4d5ocrb12xCUtEvezxcjFEAyHBPfrZDiPt9Qj",
|
|
28
|
+
networkId: types_1.NetworkId.solana,
|
|
29
|
+
};
|
|
30
|
+
const neutral2VaultsContract = {
|
|
31
|
+
name: "Neutral Vaults",
|
|
32
|
+
address: "EuSLjg23BrtwYAk1t4TFe5ArYSXCVXLBqrHRBfWQiTeJ",
|
|
33
|
+
networkId: types_1.NetworkId.solana,
|
|
34
|
+
};
|
|
35
|
+
const neutral3VaultsContract = {
|
|
36
|
+
name: "Neutral Vaults",
|
|
37
|
+
address: "BVddkVtFJLCihbVrtLo8e3iEd9NftuLunaznAxFFW8vf",
|
|
38
|
+
networkId: types_1.NetworkId.solana,
|
|
39
|
+
};
|
|
25
40
|
exports.strategiesService = {
|
|
26
41
|
id: `${exports.platform.id}-strategies`,
|
|
27
42
|
name: "Strategies",
|
|
28
43
|
platformId: exports.platform.id,
|
|
29
44
|
contractsRaw: [contract],
|
|
30
45
|
};
|
|
31
|
-
exports.
|
|
46
|
+
exports.vaultsService = {
|
|
47
|
+
id: `${exports.platform.id}-vaults`,
|
|
48
|
+
name: "Vaults",
|
|
49
|
+
platformId: exports.platform.id,
|
|
50
|
+
contractsRaw: [
|
|
51
|
+
neutral1VaultsContract,
|
|
52
|
+
neutral2VaultsContract,
|
|
53
|
+
neutral3VaultsContract,
|
|
54
|
+
],
|
|
55
|
+
};
|
|
56
|
+
exports.services = [exports.strategiesService, exports.vaultsService];
|
|
@@ -2,6 +2,7 @@ import { PlatformRaw, ServiceRaw } from "../types";
|
|
|
2
2
|
export declare const platform: PlatformRaw;
|
|
3
3
|
export declare const service: ServiceRaw;
|
|
4
4
|
export declare const leverageService: ServiceRaw;
|
|
5
|
+
export declare const vaultsService: ServiceRaw;
|
|
5
6
|
export declare const stakingService: ServiceRaw;
|
|
6
7
|
export declare const airdropService: ServiceRaw;
|
|
7
8
|
export declare const services: ServiceRaw[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.airdropService = exports.stakingService = exports.leverageService = exports.service = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.airdropService = exports.stakingService = exports.vaultsService = exports.leverageService = exports.service = exports.platform = void 0;
|
|
4
4
|
const types_1 = require("../types");
|
|
5
5
|
exports.platform = {
|
|
6
6
|
id: "nxfinance",
|
|
@@ -23,6 +23,11 @@ const leverageContract = {
|
|
|
23
23
|
address: "EHBN9YKtMmrZhj8JZqyBQRGqyyeHw5xUB1Q5eAHszuMt",
|
|
24
24
|
networkId: types_1.NetworkId.solana,
|
|
25
25
|
};
|
|
26
|
+
const vaultsContract = {
|
|
27
|
+
name: "NX Finance Vaults",
|
|
28
|
+
address: "HYHnL9BB3tqSPxkVbdcAn9CAa4hyqNYUh1FwDc4he7aD",
|
|
29
|
+
networkId: types_1.NetworkId.solana,
|
|
30
|
+
};
|
|
26
31
|
const stakingContract = {
|
|
27
32
|
name: "Staking",
|
|
28
33
|
address: "9un1MopS4NRhgVDLXB1DqoQDTmq1un48YKJuPiMLpSc9",
|
|
@@ -45,6 +50,12 @@ exports.leverageService = {
|
|
|
45
50
|
platformId: exports.platform.id,
|
|
46
51
|
contractsRaw: [leverageContract],
|
|
47
52
|
};
|
|
53
|
+
exports.vaultsService = {
|
|
54
|
+
id: `${exports.platform.id}-vaults`,
|
|
55
|
+
name: "Vaults",
|
|
56
|
+
platformId: exports.platform.id,
|
|
57
|
+
contractsRaw: [vaultsContract],
|
|
58
|
+
};
|
|
48
59
|
exports.stakingService = {
|
|
49
60
|
id: `${exports.platform.id}-staking`,
|
|
50
61
|
name: "Staking",
|
|
@@ -60,6 +71,7 @@ exports.airdropService = {
|
|
|
60
71
|
exports.services = [
|
|
61
72
|
exports.service,
|
|
62
73
|
exports.leverageService,
|
|
74
|
+
exports.vaultsService,
|
|
63
75
|
exports.stakingService,
|
|
64
76
|
exports.airdropService,
|
|
65
77
|
];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.stakingService = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.stakingService = exports.mainService = exports.platform = void 0;
|
|
4
4
|
const types_1 = require("../types");
|
|
5
5
|
exports.platform = {
|
|
6
6
|
id: "orderly",
|
|
@@ -19,6 +19,11 @@ exports.platform = {
|
|
|
19
19
|
tokens: ["ABt79MkRXUsoHuV2CVQT32YMXQhTparKFjmidQxgiQ6E"],
|
|
20
20
|
tags: ["bridge", "dapp"],
|
|
21
21
|
};
|
|
22
|
+
const contract = {
|
|
23
|
+
name: `Orderly`,
|
|
24
|
+
address: "ErBmAD61mGFKvrFNaTJuxoPwqrS8GgtwtqJTJVjFWx9Q",
|
|
25
|
+
networkId: types_1.NetworkId.solana,
|
|
26
|
+
};
|
|
22
27
|
const stakingContract = {
|
|
23
28
|
name: "Staking",
|
|
24
29
|
address: "7X5WKxXLPy9TbJDFejq288HezLmWayZWudKMmUC2d9rB",
|
|
@@ -29,10 +34,16 @@ const stakingContract2 = {
|
|
|
29
34
|
address: "GZGX6QfUo62VbPyYqPZS6t27Uke1dJmoAP6V3rw6ntTH",
|
|
30
35
|
networkId: types_1.NetworkId.solana,
|
|
31
36
|
};
|
|
37
|
+
exports.mainService = {
|
|
38
|
+
id: `${exports.platform.id}-main`,
|
|
39
|
+
name: "Main",
|
|
40
|
+
platformId: exports.platform.id,
|
|
41
|
+
contractsRaw: [contract],
|
|
42
|
+
};
|
|
32
43
|
exports.stakingService = {
|
|
33
44
|
id: `${exports.platform.id}-staking`,
|
|
34
45
|
name: "Staking",
|
|
35
46
|
platformId: exports.platform.id,
|
|
36
47
|
contractsRaw: [stakingContract, stakingContract2],
|
|
37
48
|
};
|
|
38
|
-
exports.services = [exports.stakingService];
|
|
49
|
+
exports.services = [exports.mainService, exports.stakingService];
|
package/dist/platforms/port.d.ts
CHANGED
package/dist/platforms/port.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.service = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
4
5
|
exports.platform = {
|
|
5
6
|
id: "port",
|
|
6
7
|
name: "Port",
|
|
@@ -13,4 +14,15 @@ exports.platform = {
|
|
|
13
14
|
},
|
|
14
15
|
tokens: ["PoRTjZMPXb9T7dyU7tpLEZRQj7e6ssfAE62j2oQuc6y"],
|
|
15
16
|
};
|
|
16
|
-
|
|
17
|
+
const contract = {
|
|
18
|
+
name: "Lending",
|
|
19
|
+
address: "Port7uDYB3wk6GJAw4KT1WpTeMtSu9bTcChBHkX2LfR",
|
|
20
|
+
networkId: types_1.NetworkId.solana,
|
|
21
|
+
};
|
|
22
|
+
exports.service = {
|
|
23
|
+
id: `${exports.platform.id}-lending`,
|
|
24
|
+
name: "Lending",
|
|
25
|
+
platformId: exports.platform.id,
|
|
26
|
+
contractsRaw: [contract],
|
|
27
|
+
};
|
|
28
|
+
exports.services = [exports.service];
|
package/dist/platforms/pudgy.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.services = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
4
5
|
exports.platform = {
|
|
5
6
|
id: "pudgy",
|
|
6
7
|
name: "Pudgy Penguins",
|
|
@@ -12,4 +13,15 @@ exports.platform = {
|
|
|
12
13
|
tokens: ["2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv"],
|
|
13
14
|
tags: ["nft-collection"],
|
|
14
15
|
};
|
|
15
|
-
|
|
16
|
+
const contract = {
|
|
17
|
+
name: "Airdrop",
|
|
18
|
+
address: "CUEB3rQGVrvCRTmyjLrPnsd6bBBsGbz1Sr49vxNLJkGR",
|
|
19
|
+
networkId: types_1.NetworkId.solana,
|
|
20
|
+
};
|
|
21
|
+
const service = {
|
|
22
|
+
id: `${exports.platform.id}-airdrop`,
|
|
23
|
+
name: "Airdrop",
|
|
24
|
+
platformId: exports.platform.id,
|
|
25
|
+
contractsRaw: [contract],
|
|
26
|
+
};
|
|
27
|
+
exports.services = [service];
|
package/dist/platforms/ratex.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.service = exports.programIds = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
4
5
|
exports.platform = {
|
|
5
6
|
id: "ratex",
|
|
6
7
|
name: "RateX",
|
|
@@ -16,4 +17,55 @@ exports.platform = {
|
|
|
16
17
|
},
|
|
17
18
|
tags: ["dapp"],
|
|
18
19
|
};
|
|
19
|
-
|
|
20
|
+
// lookupAddressTable Es56bH1dokFwohpWS8XYSfTXavvSEuyob2FnUYzF6pCL
|
|
21
|
+
// lookupAddressTable J1NBWaniyDdnnm4dsdTXKmNJog5p4ye1AtVeqkkrUFyM
|
|
22
|
+
exports.programIds = [
|
|
23
|
+
"RAtEwzA1rerjeWip6uMuheQtzykxYCrEQRaSFCCrf2D",
|
|
24
|
+
"RATEuvat8kBBvomUgsbGDS2EV4KjKCoMKCP3DpxYmF8",
|
|
25
|
+
"RAtEjoYMC6U3fWrbxcuda1N4hcgDbgqQN8MFCsA7ge2",
|
|
26
|
+
"rAtEti4KRfAtVTYhcdYbVznJkbt8yTAXebwHEAr31xr",
|
|
27
|
+
"RAtegmyRsp72GuTVFrg68KC4EryqHYp5tWNdm9qJ3ub",
|
|
28
|
+
"rATeLFtHiGs6Q1rz4VNsp62vc3B8dLsDrNFm2NzKHSR",
|
|
29
|
+
"rAtERVnFCEdaY3BqP7w1wdMJFphHz9m8uTyLjRkw8Fu",
|
|
30
|
+
"ratEH6tibNBomaJtiFtivmPk7pxcPPvRg3mEt8vZiEK",
|
|
31
|
+
"rATEA6NzH5jVXbJkAwPsknuvviVrSnSpARNATkG2ZJ6",
|
|
32
|
+
"raTeSRo3LFRvsrcXFKgu1P8F4DLE39h6b1zeT2HfwAq",
|
|
33
|
+
"RaTEiNdQ31benKiF11k1kzv48EeK69HHNadvQXiFq6Z",
|
|
34
|
+
"raTeSq8Ebeb1JR3xRgSz7i2DP35Fyz5zsszkijgnXKm",
|
|
35
|
+
"RaTeUhvvohYGErSb2Sy3RA5EdMv9A9jtiJe8FHTg7uK",
|
|
36
|
+
"rAtewzmMSgn1QGewCM8PHdoW49bbuzrDQi4ftFoTFWo",
|
|
37
|
+
"ratEoDQr8juEipHZ7kx1Vu7BffJ2t2R27ScJCJHDiSV",
|
|
38
|
+
"RAtELWRTmTxPtDUue6ihnoXRhLzjbFixvJmH9RwymLo",
|
|
39
|
+
"raTeaQusQToYvnH1kU531VJiUnsBjvwF19CUvFW3EAj",
|
|
40
|
+
"RatEdYzPhpaBhUCoaUm7Vcq2PVXyKt1qzPS1VBqYpGz",
|
|
41
|
+
"RatEYEfgg9jtNHS6Szk5FZsJWCtDJufqXQXajzFstrt",
|
|
42
|
+
"RAtERBd1ujYhv3ddY2sYtxvTLggwwQckureGz7XrKYU",
|
|
43
|
+
"rATE72gUT1BBYk5aLujzHumXqnnm9v1BrYngLadL2nw",
|
|
44
|
+
"rAtEFNJKz4T1ccUj7A5PpDgwyBhZbba8wSoFMfAju9J",
|
|
45
|
+
"RATEvhkMJiUPxD4VoPKWutvf87sj1n3rqKWgfQgaBRs",
|
|
46
|
+
"RAte2gSaXmo5YSbpGHDKpK64J7frAmonHBpi4odtyRV",
|
|
47
|
+
"RatEimg3gZ3fkM5ivJ7kBEt2CYCyBe78cZokkbJYWUN",
|
|
48
|
+
"RatE8tuHWtSQSHqk9dtcZKQipUJfZXMvjxqFQuAjMnL",
|
|
49
|
+
"raTeAJ92EGM17TBENyDNvrsjmhhujvaanXCFKuxF494",
|
|
50
|
+
"RatEqyzDoJW8bAk2dBp9rTZCYykhLxt4P7CDxodKK1L",
|
|
51
|
+
"RAtePjCQkLqCECgAWPgGaSje5rnoSbpHXc8HuBBZxaU",
|
|
52
|
+
"rateE3GompDX8X8a6WEqwve7kge6YwCGEhN8krmTFjB",
|
|
53
|
+
"RaTEA6Gx8Yg7hK5N1nNC2zLe8KSm1NMEL3fMqMrDyiX",
|
|
54
|
+
"rateqk9kmMstT8SdVDyiV81Wuv4snjYyBjYoPkGqywK",
|
|
55
|
+
"rAtEXKMmfaKu3c7WyfnwZkpHb5bMbu4uYHhpX2DVUhY",
|
|
56
|
+
"ratEMFkpZf6movMQZPUAvtn72BzhVkABzUr53wQDXbp",
|
|
57
|
+
"rAte14X4CFgBXqPLEhmcLxkXVRoFthL3fcbBHVuvmxo",
|
|
58
|
+
"raTEMK3K8ahgwLuWUHEvp7aJXjVmcbNgj8XmQVMgt5q",
|
|
59
|
+
"RateFzvQT8Dz2HqDHAQj22ujp8B5kaBm2FUUkSoLgZm",
|
|
60
|
+
];
|
|
61
|
+
exports.service = {
|
|
62
|
+
id: `ratex-main`,
|
|
63
|
+
name: "RateX",
|
|
64
|
+
platformId: "ratex",
|
|
65
|
+
contractsRaw: exports.programIds.map((programId) => ({
|
|
66
|
+
name: "RateX",
|
|
67
|
+
address: programId,
|
|
68
|
+
networkId: types_1.NetworkId.solana,
|
|
69
|
+
})),
|
|
70
|
+
};
|
|
71
|
+
exports.services = [exports.service];
|
package/dist/platforms/spdr.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.services = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
4
5
|
exports.platform = {
|
|
5
6
|
id: "spdr",
|
|
6
7
|
name: "Spiderswap",
|
|
@@ -16,4 +17,15 @@ exports.platform = {
|
|
|
16
17
|
tokens: ["AT79ReYU9XtHUTF5vM6Q4oa9K8w7918Fp5SU7G1MDMQY"],
|
|
17
18
|
tags: ["dapp"],
|
|
18
19
|
};
|
|
19
|
-
|
|
20
|
+
const contract = {
|
|
21
|
+
name: "Staking",
|
|
22
|
+
address: "GTavkffQHnDKDH36YNFpk7uxwHNseTRo24tV4HGC8MNY",
|
|
23
|
+
networkId: types_1.NetworkId.solana,
|
|
24
|
+
};
|
|
25
|
+
const service = {
|
|
26
|
+
id: `${exports.platform.id}-staking`,
|
|
27
|
+
name: "Staking",
|
|
28
|
+
platformId: exports.platform.id,
|
|
29
|
+
contractsRaw: [contract],
|
|
30
|
+
};
|
|
31
|
+
exports.services = [service];
|
package/dist/platforms/vectis.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.vaultsService = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
4
5
|
exports.platform = {
|
|
5
6
|
id: "vectis",
|
|
6
7
|
name: "Vectis",
|
|
@@ -15,4 +16,15 @@ exports.platform = {
|
|
|
15
16
|
},
|
|
16
17
|
tags: ["dapp"],
|
|
17
18
|
};
|
|
18
|
-
|
|
19
|
+
const vectisVaultsContract = {
|
|
20
|
+
name: "Vectis Vaults",
|
|
21
|
+
address: "EDnxACbdY1GeXnadh5gRuCJnivP7oQSAHGGAHCma4VzG",
|
|
22
|
+
networkId: types_1.NetworkId.solana,
|
|
23
|
+
};
|
|
24
|
+
exports.vaultsService = {
|
|
25
|
+
id: `${exports.platform.id}-vaults`,
|
|
26
|
+
name: "Vaults",
|
|
27
|
+
platformId: exports.platform.id,
|
|
28
|
+
contractsRaw: [vectisVaultsContract],
|
|
29
|
+
};
|
|
30
|
+
exports.services = [exports.vaultsService];
|
package/dist/platforms/wink.d.ts
CHANGED
package/dist/platforms/wink.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.service = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
4
5
|
exports.platform = {
|
|
5
6
|
id: "wink",
|
|
6
7
|
name: "Wink (Only1)",
|
|
@@ -14,4 +15,15 @@ exports.platform = {
|
|
|
14
15
|
tokens: ["3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR"],
|
|
15
16
|
tags: ["social"],
|
|
16
17
|
};
|
|
17
|
-
|
|
18
|
+
const aggregatorContract = {
|
|
19
|
+
name: `Service`,
|
|
20
|
+
address: "CDfyUBS8ZuL1L3kEy6mHVyAx1s9E97KNAwTfMfvhCriN",
|
|
21
|
+
networkId: types_1.NetworkId.solana,
|
|
22
|
+
};
|
|
23
|
+
exports.service = {
|
|
24
|
+
id: `${exports.platform.id}-service`,
|
|
25
|
+
name: "Service",
|
|
26
|
+
platformId: exports.platform.id,
|
|
27
|
+
contractsRaw: [aggregatorContract],
|
|
28
|
+
};
|
|
29
|
+
exports.services = [exports.service];
|