@sonarwatch/portfolio-plugins 0.14.132 → 0.14.134

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.
Files changed (63) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +1 -1
  3. package/src/plugins/citrus/loansFetcher.js +34 -68
  4. package/src/plugins/citrus/loansFetcher.js.map +1 -1
  5. package/src/plugins/debridge/dlmmVaultsFetcher.js +1 -0
  6. package/src/plugins/debridge/dlmmVaultsFetcher.js.map +1 -1
  7. package/src/plugins/jupiter/exchange/dcaFetcher.js +1 -0
  8. package/src/plugins/jupiter/exchange/dcaFetcher.js.map +1 -1
  9. package/src/plugins/jupiter/exchange/limitFetcher.js +3 -0
  10. package/src/plugins/jupiter/exchange/limitFetcher.js.map +1 -1
  11. package/src/plugins/jupiter/exchange/perpetualFetcher.js +1 -0
  12. package/src/plugins/jupiter/exchange/perpetualFetcher.js.map +1 -1
  13. package/src/plugins/jupiter/exchange/valueAverageFetcher.js +2 -1
  14. package/src/plugins/jupiter/exchange/valueAverageFetcher.js.map +1 -1
  15. package/src/plugins/rain/banksFetcher.js +47 -0
  16. package/src/plugins/rain/banksFetcher.js.map +1 -0
  17. package/src/plugins/rain/collectionsJob.js +9 -7
  18. package/src/plugins/rain/collectionsJob.js.map +1 -1
  19. package/src/plugins/rain/constants.d.ts +7 -2
  20. package/src/plugins/rain/constants.js +11 -3
  21. package/src/plugins/rain/constants.js.map +1 -1
  22. package/src/plugins/rain/defiBorrowsFetcher.d.ts +3 -0
  23. package/src/plugins/rain/defiBorrowsFetcher.js +52 -0
  24. package/src/plugins/rain/defiBorrowsFetcher.js.map +1 -0
  25. package/src/plugins/rain/index.js +10 -3
  26. package/src/plugins/rain/index.js.map +1 -1
  27. package/src/plugins/rain/nftBorrowsFetcher.d.ts +3 -0
  28. package/src/plugins/rain/nftBorrowsFetcher.js +76 -0
  29. package/src/plugins/rain/nftBorrowsFetcher.js.map +1 -0
  30. package/src/plugins/rain/poolsFetcher.js +79 -42
  31. package/src/plugins/rain/poolsFetcher.js.map +1 -1
  32. package/src/plugins/rain/structs.d.ts +455 -0
  33. package/src/plugins/rain/structs.js +425 -0
  34. package/src/plugins/rain/structs.js.map +1 -0
  35. package/src/plugins/rain/types.d.ts +18 -144
  36. package/src/plugins/sharky/loansFetcher.js +38 -73
  37. package/src/plugins/sharky/loansFetcher.js.map +1 -1
  38. package/src/utils/elementbuilder/AssetCollectibleBuilder.d.ts +10 -0
  39. package/src/utils/elementbuilder/AssetCollectibleBuilder.js +53 -0
  40. package/src/utils/elementbuilder/AssetCollectibleBuilder.js.map +1 -0
  41. package/src/utils/elementbuilder/ElementBorrowlendBuilder.d.ts +9 -1
  42. package/src/utils/elementbuilder/ElementBorrowlendBuilder.js +41 -3
  43. package/src/utils/elementbuilder/ElementBorrowlendBuilder.js.map +1 -1
  44. package/src/utils/elementbuilder/ElementRegistry.js +9 -1
  45. package/src/utils/elementbuilder/ElementRegistry.js.map +1 -1
  46. package/src/utils/elementbuilder/Params.d.ts +15 -0
  47. package/src/utils/solana/das/heliusAssetToAssetCollectible.js +3 -2
  48. package/src/utils/solana/das/heliusAssetToAssetCollectible.js.map +1 -1
  49. package/src/plugins/rain/filters.d.ts +0 -7
  50. package/src/plugins/rain/filters.js +0 -53
  51. package/src/plugins/rain/filters.js.map +0 -1
  52. package/src/plugins/rain/helpers.d.ts +0 -9
  53. package/src/plugins/rain/helpers.js +0 -66
  54. package/src/plugins/rain/helpers.js.map +0 -1
  55. package/src/plugins/rain/loansFetcher.js +0 -139
  56. package/src/plugins/rain/loansFetcher.js.map +0 -1
  57. package/src/plugins/rain/structs/loan.d.ts +0 -86
  58. package/src/plugins/rain/structs/loan.js +0 -86
  59. package/src/plugins/rain/structs/loan.js.map +0 -1
  60. package/src/plugins/rain/structs/pool.d.ts +0 -79
  61. package/src/plugins/rain/structs/pool.js +0 -76
  62. package/src/plugins/rain/structs/pool.js.map +0 -1
  63. /package/src/plugins/rain/{loansFetcher.d.ts → banksFetcher.d.ts} +0 -0
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ const portfolio_core_1 = require("@sonarwatch/portfolio-core");
16
+ const web3_js_1 = require("@solana/web3.js");
17
+ const bignumber_js_1 = __importDefault(require("bignumber.js"));
18
+ const constants_1 = require("./constants");
19
+ const clients_1 = require("../../utils/clients");
20
+ const ElementRegistry_1 = require("../../utils/elementbuilder/ElementRegistry");
21
+ const ParsedGpa_1 = require("../../utils/solana/beets/ParsedGpa");
22
+ const structs_1 = require("./structs");
23
+ const executor = (owner, cache) => __awaiter(void 0, void 0, void 0, function* () {
24
+ const client = (0, clients_1.getClientSolana)();
25
+ const loans = yield ParsedGpa_1.ParsedGpa.build(client, structs_1.nftLoanStruct, constants_1.nftLendingProgramId)
26
+ .addFilter('accountDiscriminator', [20, 195, 70, 117, 165, 227, 182, 1])
27
+ .addFilter('borrower', new web3_js_1.PublicKey(owner))
28
+ .run();
29
+ if (!loans.length)
30
+ return [];
31
+ const [collections, solTokenPrice] = yield Promise.all([
32
+ constants_1.collectionsMemo.getItem(cache),
33
+ cache.getTokenPrice(portfolio_core_1.solanaNativeAddress, portfolio_core_1.NetworkId.solana),
34
+ ]);
35
+ if (!collections.length)
36
+ throw new Error('Collections not cached');
37
+ if (!solTokenPrice)
38
+ throw new Error('Sol price not cached');
39
+ const elementRegistry = new ElementRegistry_1.ElementRegistry(portfolio_core_1.NetworkId.solana, constants_1.platformId);
40
+ loans.forEach((loan) => {
41
+ if (loan.status !== structs_1.LoanStatus.Ongoing)
42
+ return;
43
+ const collection = collections.find((c) => c.collectionId === loan.collection);
44
+ if (!collection)
45
+ return;
46
+ const element = elementRegistry.addElementBorrowlend({
47
+ label: 'Lending',
48
+ ref: loan.pubkey,
49
+ link: `https://app.rain.fi/dashboard/loans?address=${loan.pubkey}`,
50
+ });
51
+ element.setFixedTerms(false, loan.expiredAt.multipliedBy(1000));
52
+ element.addSuppliedCollectibleAsset({
53
+ address: loan.collateral.toString(),
54
+ collection: {
55
+ name: collection.name,
56
+ floorPrice: new bignumber_js_1.default(collection.floorPrice)
57
+ .shiftedBy(-solTokenPrice.decimals)
58
+ .multipliedBy(solTokenPrice.price),
59
+ imageUri: collection.metadata.thumbnail,
60
+ },
61
+ attributes: { tags: [portfolio_core_1.collectibleFreezedTag] },
62
+ });
63
+ element.addBorrowedAsset({
64
+ address: loan.principal,
65
+ amount: loan.borrowedAmount,
66
+ });
67
+ });
68
+ return elementRegistry.getElements(cache);
69
+ });
70
+ const fetcher = {
71
+ id: `${constants_1.platformId}-nft-borrows`,
72
+ networkId: portfolio_core_1.NetworkId.solana,
73
+ executor,
74
+ };
75
+ exports.default = fetcher;
76
+ //# sourceMappingURL=nftBorrowsFetcher.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nftBorrowsFetcher.js","sourceRoot":"","sources":["../../../../../../packages/plugins/src/plugins/rain/nftBorrowsFetcher.ts"],"names":[],"mappings":"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"}
@@ -13,54 +13,91 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
13
13
  };
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
15
15
  const portfolio_core_1 = require("@sonarwatch/portfolio-core");
16
+ const web3_js_1 = require("@solana/web3.js");
17
+ const bignumber_js_1 = __importDefault(require("bignumber.js"));
16
18
  const constants_1 = require("./constants");
17
19
  const clients_1 = require("../../utils/clients");
18
- const pool_1 = require("./structs/pool");
19
- const tokenPriceToAssetToken_1 = __importDefault(require("../../utils/misc/tokenPriceToAssetToken"));
20
- const helpers_1 = require("./helpers");
21
- const getParsedAccountInfo_1 = require("../../utils/solana/getParsedAccountInfo");
20
+ const ParsedGpa_1 = require("../../utils/solana/beets/ParsedGpa");
21
+ const ElementRegistry_1 = require("../../utils/elementbuilder/ElementRegistry");
22
+ const structs_1 = require("./structs");
22
23
  const executor = (owner, cache) => __awaiter(void 0, void 0, void 0, function* () {
23
24
  const client = (0, clients_1.getClientSolana)();
24
- // Trying to get https://solscan.io/account/4g5zooignaoVrS6NdUWEcNLxZmJGN9UJBAGtrUiBwieF
25
- const poolAccount = yield (0, getParsedAccountInfo_1.getParsedAccountInfo)(client, pool_1.poolStruct, (0, helpers_1.getPoolPda)(owner));
26
- if (!poolAccount || poolAccount.totalAmount.isZero())
25
+ const pools = yield ParsedGpa_1.ParsedGpa.build(client, structs_1.poolStruct, constants_1.defiLendingProgramId)
26
+ .addFilter('accountDiscriminator', [241, 154, 109, 4, 17, 177, 109, 188])
27
+ .addFilter('owner', new web3_js_1.PublicKey(owner))
28
+ .run();
29
+ if (!pools.length)
27
30
  return [];
28
- const tokenPrice = yield cache.getTokenPrice(poolAccount.currency.toString(), portfolio_core_1.NetworkId.solana);
29
- if (!tokenPrice)
31
+ const allDefiLoans = yield Promise.all(pools.map((pool) => ParsedGpa_1.ParsedGpa.build(client, structs_1.defiLoanStruct, constants_1.defiLendingProgramId)
32
+ .addFilter('accountDiscriminator', [20, 195, 70, 117, 165, 227, 182, 1])
33
+ .addFilter('pool', pool.pubkey)
34
+ .run()));
35
+ const allNftsLoans = yield Promise.all(pools.map((pool) => ParsedGpa_1.ParsedGpa.build(client, structs_1.nftLoanStruct, constants_1.nftLendingProgramId)
36
+ .addFilter('accountDiscriminator', [20, 195, 70, 117, 165, 227, 182, 1])
37
+ .addFilter('pool', pool.pubkey)
38
+ .run()));
39
+ if (allDefiLoans.flat().length === 0 && allNftsLoans.flat().length === 0)
30
40
  return [];
31
- const borrowedAssets = [];
32
- const borrowedYields = [];
33
- const suppliedAssets = [];
34
- const suppliedYields = [];
35
- const rewardAssets = [];
36
- const amount = poolAccount.totalAmount
37
- .dividedBy(Math.pow(10, tokenPrice.decimals))
38
- .toNumber();
39
- suppliedAssets.push((0, tokenPriceToAssetToken_1.default)(tokenPrice.address, amount, portfolio_core_1.NetworkId.solana, tokenPrice));
40
- if (suppliedAssets.length === 0 && borrowedAssets.length === 0)
41
- return [];
42
- const { borrowedValue, healthRatio, rewardValue, suppliedValue, value } = (0, portfolio_core_1.getElementLendingValues)({ suppliedAssets, borrowedAssets, rewardAssets });
43
- return [
44
- {
45
- type: portfolio_core_1.PortfolioElementType.borrowlend,
46
- networkId: portfolio_core_1.NetworkId.solana,
47
- platformId: constants_1.platformId,
48
- label: 'Lending',
49
- value,
50
- data: {
51
- borrowedAssets,
52
- borrowedValue,
53
- borrowedYields,
54
- suppliedAssets,
55
- suppliedValue,
56
- suppliedYields,
57
- healthRatio,
58
- rewardValue,
59
- rewardAssets,
60
- value,
61
- },
62
- },
63
- ];
41
+ const [collections, solTokenPrice] = yield Promise.all([
42
+ constants_1.collectionsMemo.getItem(cache),
43
+ cache.getTokenPrice(portfolio_core_1.solanaNativeAddress, portfolio_core_1.NetworkId.solana),
44
+ ]);
45
+ if (!collections.length)
46
+ throw new Error('Collections not cached');
47
+ if (!solTokenPrice)
48
+ throw new Error('Sol price not cached');
49
+ const elementRegistry = new ElementRegistry_1.ElementRegistry(portfolio_core_1.NetworkId.solana, constants_1.platformId);
50
+ pools.forEach((pool, i) => {
51
+ const defiLoans = allDefiLoans[i];
52
+ const nftLoans = allNftsLoans[i];
53
+ defiLoans.forEach((loan) => {
54
+ if (loan.status !== structs_1.LoanStatus.Ongoing)
55
+ return;
56
+ const element = elementRegistry.addElementBorrowlend({
57
+ label: 'Lending',
58
+ ref: loan.pubkey,
59
+ link: `https://app.rain.fi/dashboard/loans?address=${loan.pubkey}`,
60
+ });
61
+ element.setFixedTerms(true, loan.expiredAt.multipliedBy(1000));
62
+ element.addSuppliedAsset({
63
+ address: loan.principal,
64
+ amount: loan.borrowedAmount,
65
+ });
66
+ element.addBorrowedAsset({
67
+ address: loan.collateral,
68
+ amount: loan.collateralAmount,
69
+ });
70
+ });
71
+ nftLoans.forEach((loan) => {
72
+ if (loan.status !== structs_1.LoanStatus.Ongoing)
73
+ return;
74
+ const collection = collections.find((c) => c.collectionId === loan.collection);
75
+ if (!collection)
76
+ return;
77
+ const element = elementRegistry.addElementBorrowlend({
78
+ label: 'Lending',
79
+ ref: loan.pubkey,
80
+ link: `https://app.rain.fi/dashboard/loans?address=${loan.pubkey}`,
81
+ });
82
+ element.setFixedTerms(false, loan.expiredAt.multipliedBy(1000));
83
+ element.addBorrowedCollectibleAsset({
84
+ address: loan.collateral.toString(),
85
+ collection: {
86
+ name: collection.name,
87
+ floorPrice: new bignumber_js_1.default(collection.floorPrice)
88
+ .shiftedBy(-solTokenPrice.decimals)
89
+ .multipliedBy(solTokenPrice.price),
90
+ imageUri: collection.metadata.thumbnail,
91
+ },
92
+ attributes: { tags: [portfolio_core_1.collectibleFreezedTag] },
93
+ });
94
+ element.addSuppliedAsset({
95
+ address: loan.principal,
96
+ amount: loan.borrowedAmount,
97
+ });
98
+ });
99
+ });
100
+ return elementRegistry.getElements(cache);
64
101
  });
65
102
  const fetcher = {
66
103
  id: `${constants_1.platformId}-pools`,
@@ -1 +1 @@
1
- {"version":3,"file":"poolsFetcher.js","sourceRoot":"","sources":["../../../../../../packages/plugins/src/plugins/rain/poolsFetcher.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA,+DAMoC;AAGpC,2CAAyC;AACzC,iDAAsD;AACtD,yCAA4C;AAC5C,qGAA6E;AAC7E,uCAAuC;AACvC,kFAA+E;AAE/E,MAAM,QAAQ,GAAoB,CAAO,KAAa,EAAE,KAAY,EAAE,EAAE;IACtE,MAAM,MAAM,GAAG,IAAA,yBAAe,GAAE,CAAC;IAEjC,wFAAwF;IAExF,MAAM,WAAW,GAAG,MAAM,IAAA,2CAAoB,EAC5C,MAAM,EACN,iBAAU,EACV,IAAA,oBAAU,EAAC,KAAK,CAAC,CAClB,CAAC;IACF,IAAI,CAAC,WAAW,IAAI,WAAW,CAAC,WAAW,CAAC,MAAM,EAAE;QAAE,OAAO,EAAE,CAAC;IAEhE,MAAM,UAAU,GAAG,MAAM,KAAK,CAAC,aAAa,CAC1C,WAAW,CAAC,QAAQ,CAAC,QAAQ,EAAE,EAC/B,0BAAS,CAAC,MAAM,CACjB,CAAC;IACF,IAAI,CAAC,UAAU;QAAE,OAAO,EAAE,CAAC;IAE3B,MAAM,cAAc,GAAqB,EAAE,CAAC;IAC5C,MAAM,cAAc,GAAc,EAAE,CAAC;IACrC,MAAM,cAAc,GAAqB,EAAE,CAAC;IAC5C,MAAM,cAAc,GAAc,EAAE,CAAC;IACrC,MAAM,YAAY,GAAqB,EAAE,CAAC;IAE1C,MAAM,MAAM,GAAG,WAAW,CAAC,WAAW;SACnC,SAAS,CAAC,SAAA,EAAE,EAAI,UAAU,CAAC,QAAQ,CAAA,CAAC;SACpC,QAAQ,EAAE,CAAC;IACd,cAAc,CAAC,IAAI,CACjB,IAAA,gCAAsB,EACpB,UAAU,CAAC,OAAO,EAClB,MAAM,EACN,0BAAS,CAAC,MAAM,EAChB,UAAU,CACX,CACF,CAAC;IAEF,IAAI,cAAc,CAAC,MAAM,KAAK,CAAC,IAAI,cAAc,CAAC,MAAM,KAAK,CAAC;QAAE,OAAO,EAAE,CAAC;IAE1E,MAAM,EAAE,aAAa,EAAE,WAAW,EAAE,WAAW,EAAE,aAAa,EAAE,KAAK,EAAE,GACrE,IAAA,wCAAuB,EAAC,EAAE,cAAc,EAAE,cAAc,EAAE,YAAY,EAAE,CAAC,CAAC;IAE5E,OAAO;QACL;YACE,IAAI,EAAE,qCAAoB,CAAC,UAAU;YACrC,SAAS,EAAE,0BAAS,CAAC,MAAM;YAC3B,UAAU,EAAV,sBAAU;YACV,KAAK,EAAE,SAAS;YAChB,KAAK;YACL,IAAI,EAAE;gBACJ,cAAc;gBACd,aAAa;gBACb,cAAc;gBACd,cAAc;gBACd,aAAa;gBACb,cAAc;gBACd,WAAW;gBACX,WAAW;gBACX,YAAY;gBACZ,KAAK;aACN;SACF;KACF,CAAC;AACJ,CAAC,CAAA,CAAC;AAEF,MAAM,OAAO,GAAY;IACvB,EAAE,EAAE,GAAG,sBAAU,QAAQ;IACzB,SAAS,EAAE,0BAAS,CAAC,MAAM;IAC3B,QAAQ;CACT,CAAC;AAEF,kBAAe,OAAO,CAAC"}
1
+ {"version":3,"file":"poolsFetcher.js","sourceRoot":"","sources":["../../../../../../packages/plugins/src/plugins/rain/poolsFetcher.ts"],"names":[],"mappings":"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"}