@sonarwatch/portfolio-plugins 0.14.143 → 0.14.144

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 (36) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +1 -1
  3. package/src/plugins/banx/constants.d.ts +14 -8
  4. package/src/plugins/banx/constants.js +25 -13
  5. package/src/plugins/banx/constants.js.map +1 -1
  6. package/src/plugins/banx/index.js +12 -2
  7. package/src/plugins/banx/index.js.map +1 -1
  8. package/src/plugins/banx/loansFetcher.js +108 -123
  9. package/src/plugins/banx/loansFetcher.js.map +1 -1
  10. package/src/plugins/banx/marketsJob.js +40 -0
  11. package/src/plugins/banx/marketsJob.js.map +1 -0
  12. package/src/plugins/banx/offersFetcher.js +61 -70
  13. package/src/plugins/banx/offersFetcher.js.map +1 -1
  14. package/src/plugins/banx/stakingFetcher.js +6 -3
  15. package/src/plugins/banx/stakingFetcher.js.map +1 -1
  16. package/src/plugins/banx/structs.d.ts +222 -2
  17. package/src/plugins/banx/structs.js +216 -2
  18. package/src/plugins/banx/structs.js.map +1 -1
  19. package/src/plugins/banx/types.d.ts +50 -258
  20. package/src/plugins/banx/vaultsFetcher.d.ts +3 -0
  21. package/src/plugins/banx/vaultsFetcher.js +74 -0
  22. package/src/plugins/banx/vaultsFetcher.js.map +1 -0
  23. package/src/plugins/banx/vaultsJob.d.ts +3 -0
  24. package/src/plugins/banx/{collectionsJob.js → vaultsJob.js} +5 -16
  25. package/src/plugins/banx/vaultsJob.js.map +1 -0
  26. package/src/plugins/banx/collectionsJob.js.map +0 -1
  27. package/src/plugins/banx/filters.d.ts +0 -6
  28. package/src/plugins/banx/filters.js +0 -39
  29. package/src/plugins/banx/filters.js.map +0 -1
  30. package/src/plugins/banx/helpers.d.ts +0 -5
  31. package/src/plugins/banx/helpers.js +0 -64
  32. package/src/plugins/banx/helpers.js.map +0 -1
  33. package/src/plugins/banx/idl.d.ts +0 -123
  34. package/src/plugins/banx/idl.js +0 -2187
  35. package/src/plugins/banx/idl.js.map +0 -1
  36. /package/src/plugins/banx/{collectionsJob.d.ts → marketsJob.d.ts} +0 -0
@@ -8,89 +8,80 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
8
8
  step((generator = generator.apply(thisArg, _arguments || [])).next());
9
9
  });
10
10
  };
11
- var __importDefault = (this && this.__importDefault) || function (mod) {
12
- return (mod && mod.__esModule) ? mod : { "default": mod };
13
- };
14
11
  Object.defineProperty(exports, "__esModule", { value: true });
15
12
  const portfolio_core_1 = require("@sonarwatch/portfolio-core");
16
- const bignumber_js_1 = __importDefault(require("bignumber.js"));
13
+ const web3_js_1 = require("@solana/web3.js");
17
14
  const clients_1 = require("../../utils/clients");
18
15
  const solana_1 = require("../../utils/solana");
19
- const tokenPriceToAssetToken_1 = __importDefault(require("../../utils/misc/tokenPriceToAssetToken"));
20
16
  const constants_1 = require("./constants");
21
- const MemoizedCache_1 = require("../../utils/misc/MemoizedCache");
22
- const arrayToMap_1 = require("../../utils/misc/arrayToMap");
23
- const collectionsMemo = new MemoizedCache_1.MemoizedCache(constants_1.collectionsCacheKey, {
24
- prefix: constants_1.cachePrefix,
25
- networkId: portfolio_core_1.NetworkId.solana,
26
- }, (arr) => (0, arrayToMap_1.arrayToMap)(arr || [], 'marketPubkey'));
27
- /**
28
- * @deprecated
29
- * this fetcher has been deprecated following protocol changes
30
- */
17
+ const ParsedGpa_1 = require("../../utils/solana/beets/ParsedGpa");
18
+ const structs_1 = require("./structs");
19
+ const ElementRegistry_1 = require("../../utils/elementbuilder/ElementRegistry");
31
20
  const executor = (owner, cache) => __awaiter(void 0, void 0, void 0, function* () {
32
21
  const connection = (0, clients_1.getClientSolana)();
33
- const accounts = (yield (0, solana_1.getAutoParsedProgramAccounts)(connection, constants_1.banxIdlItem, [
34
- {
35
- dataSize: constants_1.bondOfferDataSize,
36
- },
37
- {
38
- memcmp: {
39
- bytes: owner,
40
- offset: 130,
41
- },
42
- },
43
- ])).filter((acc) => acc.buyOrdersQuantity !== '0');
22
+ const accounts = (yield ParsedGpa_1.ParsedGpa.build(connection, structs_1.bondOfferv3Struct, constants_1.banxPid)
23
+ .addFilter('accountDiscriminator', [54, 96, 254, 195, 217, 91, 187, 104])
24
+ .addFilter('assetReceiver', new web3_js_1.PublicKey(owner))
25
+ .run()).filter((acc) => !acc.buyOrdersQuantity.isZero());
44
26
  if (accounts.length === 0)
45
27
  return [];
46
- const [tokenPrices, collections] = yield Promise.all([
47
- cache.getTokenPricesAsMap([solana_1.usdcSolanaMint, portfolio_core_1.solanaNativeAddress], portfolio_core_1.NetworkId.solana),
48
- collectionsMemo.getItem(cache),
28
+ const [splMarkets, nftMarkets] = yield Promise.all([
29
+ constants_1.splMarketsMemo.getItem(cache),
30
+ constants_1.nftMarketsMemo.getItem(cache),
49
31
  ]);
50
- const elements = [];
51
- accounts.forEach((acc) => {
52
- const collection = collections.get(acc.hadoMarket);
53
- if (!collection)
54
- return;
55
- const borrowedAssets = [];
56
- const suppliedAssets = [];
57
- const tokenPrice = acc.bondingCurve.bondingType.linearUsdc
58
- ? tokenPrices.get(solana_1.usdcSolanaMint)
59
- : tokenPrices.get(portfolio_core_1.solanaNativeAddress);
60
- if (!tokenPrice)
32
+ if (!splMarkets)
33
+ throw new Error('SPL Markets not cached');
34
+ if (!nftMarkets)
35
+ throw new Error('NFT Markets not cached');
36
+ const elementRegistry = new ElementRegistry_1.ElementRegistry(portfolio_core_1.NetworkId.solana, constants_1.platformId);
37
+ accounts.forEach((account) => {
38
+ const splMarket = splMarkets.get(account.hadoMarket.toString());
39
+ const nftMarket = nftMarkets.get(account.hadoMarket.toString());
40
+ if (!splMarket && !nftMarket) {
61
41
  return;
62
- suppliedAssets.push((0, tokenPriceToAssetToken_1.default)(tokenPrice.address, new bignumber_js_1.default(acc.fundsSolOrTokenBalance)
63
- .dividedBy(Math.pow(10, tokenPrice.decimals))
64
- .toNumber(), portfolio_core_1.NetworkId.solana, tokenPrice));
65
- const name = `${Number(acc.buyOrdersQuantity) > 1 ? `${acc.buyOrdersQuantity} ` : ''}Lend Offer${Number(acc.buyOrdersQuantity) > 1 ? 's' : ''} on ${collection.collectionName}`;
66
- const { borrowedValue, suppliedValue, healthRatio, rewardValue } = (0, portfolio_core_1.getElementLendingValues)({
67
- suppliedAssets,
68
- borrowedAssets,
69
- rewardAssets: [],
70
- });
71
- if (suppliedValue && suppliedValue > 0)
72
- elements.push({
73
- networkId: portfolio_core_1.NetworkId.solana,
74
- label: 'Lending',
75
- platformId: constants_1.platformId,
76
- type: portfolio_core_1.PortfolioElementType.borrowlend,
77
- value: suppliedValue,
78
- name,
79
- data: {
80
- borrowedAssets,
81
- borrowedValue,
82
- borrowedYields: [],
83
- suppliedAssets,
84
- suppliedValue,
85
- suppliedYields: [],
86
- rewardAssets: [],
87
- rewardValue,
88
- healthRatio,
89
- value: suppliedValue,
42
+ }
43
+ const element = elementRegistry.addElementBorrowlend({
44
+ label: 'Lending',
45
+ ref: account.pubkey,
46
+ sourceRefs: [
47
+ {
48
+ name: 'Market',
49
+ address: account.hadoMarket.toString(),
90
50
  },
91
- });
51
+ ],
52
+ });
53
+ let address;
54
+ switch (account.bondingCurve.bondingType) {
55
+ case structs_1.BondOfferBondingCurveType.Linearusdc:
56
+ case structs_1.BondOfferBondingCurveType.Exponentialusdc:
57
+ address = solana_1.usdcSolanaMint;
58
+ break;
59
+ case structs_1.BondOfferBondingCurveType.Linearbanxsol:
60
+ case structs_1.BondOfferBondingCurveType.Exponentialbanxsol:
61
+ address = constants_1.banxSolMint;
62
+ break;
63
+ case structs_1.BondOfferBondingCurveType.Linear:
64
+ case structs_1.BondOfferBondingCurveType.Exponential:
65
+ default:
66
+ address = portfolio_core_1.solanaNativeAddress;
67
+ break;
68
+ }
69
+ element.addSuppliedAsset({
70
+ address,
71
+ amount: account.fundsSolOrTokenBalance,
72
+ });
73
+ let name = `${Number(account.buyOrdersQuantity) > 1
74
+ ? `${account.buyOrdersQuantity} `
75
+ : ''}Lend Offer${Number(account.buyOrdersQuantity) > 1 ? 's' : ''}`;
76
+ if (splMarket) {
77
+ name = `${name} on ${splMarket.collateral.ticker}`;
78
+ }
79
+ else if (nftMarket) {
80
+ name = `${name} on ${nftMarket.collectionName}`;
81
+ }
82
+ element.setName(name);
92
83
  });
93
- return elements;
84
+ return elementRegistry.getElements(cache);
94
85
  });
95
86
  const fetcher = {
96
87
  id: `${constants_1.platformId}-offers`,
@@ -1 +1 @@
1
- {"version":3,"file":"offersFetcher.js","sourceRoot":"","sources":["../../../../../../packages/plugins/src/plugins/banx/offersFetcher.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"offersFetcher.js","sourceRoot":"","sources":["../../../../../../packages/plugins/src/plugins/banx/offersFetcher.ts"],"names":[],"mappings":"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"}
@@ -14,16 +14,19 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
15
15
  const portfolio_core_1 = require("@sonarwatch/portfolio-core");
16
16
  const bignumber_js_1 = __importDefault(require("bignumber.js"));
17
+ const web3_js_1 = require("@solana/web3.js");
17
18
  const constants_1 = require("./constants");
18
- const solana_1 = require("../../utils/solana");
19
19
  const structs_1 = require("./structs");
20
- const filters_1 = require("./filters");
21
20
  const clients_1 = require("../../utils/clients");
22
21
  const ElementRegistry_1 = require("../../utils/elementbuilder/ElementRegistry");
22
+ const ParsedGpa_1 = require("../../utils/solana/beets/ParsedGpa");
23
23
  const banxFactor = new bignumber_js_1.default(Math.pow(10, constants_1.banxDecimals));
24
24
  const executor = (owner, cache) => __awaiter(void 0, void 0, void 0, function* () {
25
25
  const client = (0, clients_1.getClientSolana)();
26
- const accounts = yield (0, solana_1.getParsedProgramAccounts)(client, structs_1.banxTokenStakeStruct, constants_1.banxPid, (0, filters_1.stakeFilters)(owner));
26
+ const accounts = yield ParsedGpa_1.ParsedGpa.build(client, structs_1.banxTokenStakeStruct, constants_1.banxPid)
27
+ .addFilter('accountDiscriminator', [233, 60, 55, 117, 102, 180, 229, 154])
28
+ .addFilter('user', new web3_js_1.PublicKey(owner))
29
+ .run();
27
30
  const amounts = [];
28
31
  for (const account of accounts) {
29
32
  if (account.banxStakeState === structs_1.BanxTokenStakeState.Unstaked)
@@ -1 +1 @@
1
- {"version":3,"file":"stakingFetcher.js","sourceRoot":"","sources":["../../../../../../packages/plugins/src/plugins/banx/stakingFetcher.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA,+DAAuD;AACvD,gEAAqC;AAGrC,2CAA0E;AAC1E,+CAA8D;AAC9D,uCAAsE;AACtE,uCAAyC;AACzC,iDAAsD;AACtD,gFAA6E;AAE7E,MAAM,UAAU,GAAG,IAAI,sBAAS,CAAC,SAAA,EAAE,EAAI,wBAAY,CAAA,CAAC,CAAC;AAErD,MAAM,QAAQ,GAAoB,CAAO,KAAa,EAAE,KAAY,EAAE,EAAE;IACtE,MAAM,MAAM,GAAG,IAAA,yBAAe,GAAE,CAAC;IAEjC,MAAM,QAAQ,GAAG,MAAM,IAAA,iCAAwB,EAC7C,MAAM,EACN,8BAAoB,EACpB,mBAAO,EACP,IAAA,sBAAY,EAAC,KAAK,CAAC,CACpB,CAAC;IAEF,MAAM,OAAO,GAAgB,EAAE,CAAC;IAChC,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;QAC/B,IAAI,OAAO,CAAC,cAAc,KAAK,6BAAmB,CAAC,QAAQ;YAAE,SAAS;QACtE,IAAI,OAAO,CAAC,YAAY,CAAC,MAAM,EAAE;YAAE,SAAS;QAE5C,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,CAAC;IAC3D,CAAC;IACD,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC;QAAE,OAAO,EAAE,CAAC;IAEpC,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAA,sBAAS,EAAC,CAAC,CAAC,CAAC,CAAC;IAE3E,MAAM,eAAe,GAAG,IAAI,iCAAe,CAAC,0BAAS,CAAC,MAAM,EAAE,sBAAU,CAAC,CAAC;IAE1E,MAAM,OAAO,GAAG,eAAe,CAAC,kBAAkB,CAAC;QACjD,KAAK,EAAE,QAAQ;KAChB,CAAC,CAAC;IAEH,OAAO,CAAC,QAAQ,CAAC;QACf,OAAO,EAAE,oBAAQ;QACjB,MAAM;QACN,cAAc,EAAE,IAAI;KACrB,CAAC,CAAC;IAEH,OAAO,eAAe,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAC5C,CAAC,CAAA,CAAC;AAEF,MAAM,OAAO,GAAY;IACvB,EAAE,EAAE,GAAG,sBAAU,UAAU;IAC3B,SAAS,EAAE,0BAAS,CAAC,MAAM;IAC3B,QAAQ;CACT,CAAC;AAEF,kBAAe,OAAO,CAAC"}
1
+ {"version":3,"file":"stakingFetcher.js","sourceRoot":"","sources":["../../../../../../packages/plugins/src/plugins/banx/stakingFetcher.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA,+DAAuD;AACvD,gEAAqC;AACrC,6CAA4C;AAG5C,2CAA0E;AAC1E,uCAAsE;AACtE,iDAAsD;AACtD,gFAA6E;AAC7E,kEAA+D;AAE/D,MAAM,UAAU,GAAG,IAAI,sBAAS,CAAC,SAAA,EAAE,EAAI,wBAAY,CAAA,CAAC,CAAC;AAErD,MAAM,QAAQ,GAAoB,CAAO,KAAa,EAAE,KAAY,EAAE,EAAE;IACtE,MAAM,MAAM,GAAG,IAAA,yBAAe,GAAE,CAAC;IAEjC,MAAM,QAAQ,GAAG,MAAM,qBAAS,CAAC,KAAK,CAAC,MAAM,EAAE,8BAAoB,EAAE,mBAAO,CAAC;SAC1E,SAAS,CAAC,sBAAsB,EAAE,CAAC,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;SACzE,SAAS,CAAC,MAAM,EAAE,IAAI,mBAAS,CAAC,KAAK,CAAC,CAAC;SACvC,GAAG,EAAE,CAAC;IAET,MAAM,OAAO,GAAgB,EAAE,CAAC;IAChC,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;QAC/B,IAAI,OAAO,CAAC,cAAc,KAAK,6BAAmB,CAAC,QAAQ;YAAE,SAAS;QACtE,IAAI,OAAO,CAAC,YAAY,CAAC,MAAM,EAAE;YAAE,SAAS;QAE5C,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,CAAC;IAC3D,CAAC;IACD,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC;QAAE,OAAO,EAAE,CAAC;IAEpC,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,IAAA,sBAAS,EAAC,CAAC,CAAC,CAAC,CAAC;IAE3E,MAAM,eAAe,GAAG,IAAI,iCAAe,CAAC,0BAAS,CAAC,MAAM,EAAE,sBAAU,CAAC,CAAC;IAE1E,MAAM,OAAO,GAAG,eAAe,CAAC,kBAAkB,CAAC;QACjD,KAAK,EAAE,QAAQ;KAChB,CAAC,CAAC;IAEH,OAAO,CAAC,QAAQ,CAAC;QACf,OAAO,EAAE,oBAAQ;QACjB,MAAM;QACN,cAAc,EAAE,IAAI;KACrB,CAAC,CAAC;IAEH,OAAO,eAAe,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAC5C,CAAC,CAAA,CAAC;AAEF,MAAM,OAAO,GAAY;IACvB,EAAE,EAAE,GAAG,sBAAU,UAAU;IAC3B,SAAS,EAAE,0BAAS,CAAC,MAAM;IAC3B,QAAQ;CACT,CAAC;AAEF,kBAAe,OAAO,CAAC"}
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  /// <reference types="@drift-labs/sdk/node_modules/@solana/web3.js" />
3
2
  /// <reference types="jito-ts/node_modules/@solana/web3.js" />
4
3
  import { BeetStruct } from '@metaplex-foundation/beet';
@@ -10,7 +9,7 @@ export declare enum BanxTokenStakeState {
10
9
  Unstaked = 2
11
10
  }
12
11
  export type BanxTokenStake = {
13
- buffer: Buffer;
12
+ accountDiscriminator: number[];
14
13
  banxStakeState: BanxTokenStakeState;
15
14
  user: PublicKey;
16
15
  adventureSubscriptionsQuantity: BigNumber;
@@ -25,4 +24,225 @@ export type BanxTokenStake = {
25
24
  nftsUnstakedAt: BigNumber;
26
25
  placeholderOne: PublicKey;
27
26
  };
27
+ export declare enum Bondtradetransactionv2type {
28
+ None = 0,
29
+ Autocompound = 1,
30
+ Receivenftonliquidation = 2,
31
+ Autoreceivesol = 3,
32
+ Autocompoundandreceivenft = 4,
33
+ Autoreceiveandreceivenft = 5,
34
+ Autoreceiveandreceivespl = 6
35
+ }
36
+ export declare enum BondtradeTransactionv2State {
37
+ Notactive = 0,
38
+ Active = 1,
39
+ Perpetualactive = 2,
40
+ Perpetualrepaid = 3,
41
+ Perpetualliquidatedbyauction = 4,
42
+ Perpetualliquidatedbyclaim = 5,
43
+ Perpetualmanualterminating = 6,
44
+ Perpetualpartialrepaid = 7,
45
+ Perpetualrefinancerepaid = 8,
46
+ Perpetualrefinancedactive = 9,
47
+ Migrated = 10,
48
+ Perpetualborrowerlisting = 11,
49
+ Perpetuallenderlisting = 12,
50
+ Perpetualsellingloan = 13,
51
+ Perpetualsellinglisting = 14,
52
+ Perpetualsellinglistingclosed = 15,
53
+ Perpetualaddcollateralclosed = 16
54
+ }
55
+ export declare enum RedeemResult {
56
+ None = 0,
57
+ Directborrow = 1,
58
+ Reborrow = 2,
59
+ Instantrefinanced = 3,
60
+ Refinancedbyauction = 4,
61
+ Partialrepay = 5,
62
+ Directrepaid = 6,
63
+ Claimed = 7,
64
+ Addcollateral = 8
65
+ }
66
+ export declare enum LendingTokenType {
67
+ Nativesol = 0,
68
+ Usdc = 1,
69
+ Banxsol = 2
70
+ }
71
+ export declare enum RepayDestination {
72
+ None = 0,
73
+ Offer = 1,
74
+ Wallet = 2,
75
+ Vault = 3
76
+ }
77
+ export declare enum PairState {
78
+ Initializing = 0,
79
+ Onmarketvirtual = 1,
80
+ Onmarkettokenized = 2,
81
+ Frozen = 3,
82
+ Closed = 4,
83
+ Perpetualonmarket = 5,
84
+ Perpetualclosed = 6,
85
+ Perpetualbondingcurveonmarket = 7,
86
+ Perpetualmigrated = 8,
87
+ Perpetualbondingcurveclosed = 9,
88
+ Perpetuallisting = 10
89
+ }
90
+ export declare enum BondOfferBondingCurveType {
91
+ Linear = 0,
92
+ Exponential = 1,
93
+ Linearusdc = 2,
94
+ Exponentialusdc = 3,
95
+ Linearbanxsol = 4,
96
+ Exponentialbanxsol = 5
97
+ }
98
+ export type BondOfferBondingCurve = {
99
+ delta: BigNumber;
100
+ bondingType: BondOfferBondingCurveType;
101
+ };
102
+ export declare enum BondFeatures {
103
+ None = 0,
104
+ Autocompound = 1,
105
+ Receivenftonliquidation = 2,
106
+ Autoreceivesol = 3,
107
+ Autocompoundandreceivenft = 4,
108
+ Autoreceiveandreceivenft = 5,
109
+ Autoreceiveandreceivespl = 6
110
+ }
111
+ export type BondOfferValidation = {
112
+ loanToValueFilter: BigNumber;
113
+ collateralsPerToken: BigNumber;
114
+ maxReturnAmountFilter: BigNumber;
115
+ bondFeatures: BondFeatures;
116
+ };
28
117
  export declare const banxTokenStakeStruct: BeetStruct<BanxTokenStake, Partial<BanxTokenStake>>;
118
+ export type BondTradeTransactionv3 = {
119
+ accountDiscriminator: number[];
120
+ bondTradeTransactionState: BondtradeTransactionv2State;
121
+ bondOffer: PublicKey;
122
+ user: PublicKey;
123
+ amountOfBonds: BigNumber;
124
+ solAmount: BigNumber;
125
+ feeAmount: BigNumber;
126
+ bondTradeTransactionType: Bondtradetransactionv2type;
127
+ fbondTokenMint: PublicKey;
128
+ soldAt: BigNumber;
129
+ redeemedAt: BigNumber;
130
+ redeemResult: RedeemResult;
131
+ seller: PublicKey;
132
+ isDirectSell: boolean;
133
+ lendingToken: LendingTokenType;
134
+ currentRemainingLent: BigNumber;
135
+ interestSnapshot: BigNumber;
136
+ partialRepaySnapshot: BigNumber;
137
+ terminationStartedAt: BigNumber;
138
+ lenderOriginalLent: BigNumber;
139
+ lenderFullRepaidAmount: BigNumber;
140
+ borrowerOriginalLent: BigNumber;
141
+ borrowerFullRepaidAmount: BigNumber;
142
+ repayDestination: RepayDestination;
143
+ repaymentCallAmount: BigNumber;
144
+ terminationFreeze: BigNumber;
145
+ redeemResultNext: RedeemResult;
146
+ protocolInterestFee: number;
147
+ collateralAmountSnapshot: BigNumber;
148
+ placeholder1: number;
149
+ placeholder2: number;
150
+ placeholder3: number;
151
+ placeholder4: BigNumber;
152
+ placeholder5: BigNumber;
153
+ placeholder6: BigNumber;
154
+ placeholder7: PublicKey;
155
+ };
156
+ export declare const Bondtradetransactionv3Struct: BeetStruct<BondTradeTransactionv3, Partial<BondTradeTransactionv3>>;
157
+ export type BondOfferv3 = {
158
+ accountDiscriminator: number[];
159
+ hadoMarket: PublicKey;
160
+ pairState: PairState;
161
+ bondingCurve: BondOfferBondingCurve;
162
+ baseSpotPrice: BigNumber;
163
+ mathCounter: BigNumber;
164
+ currentSpotPrice: BigNumber;
165
+ concentrationIndex: BigNumber;
166
+ bidCap: BigNumber;
167
+ bidSettlement: BigNumber;
168
+ edgeSettlement: BigNumber;
169
+ fundsSolOrTokenBalance: BigNumber;
170
+ buyOrdersQuantity: BigNumber;
171
+ lastTransactedAt: BigNumber;
172
+ assetReceiver: PublicKey;
173
+ validation: BondOfferValidation;
174
+ liquidationLtvBp: BigNumber;
175
+ offerLtvBp: BigNumber;
176
+ placeholder3: BigNumber;
177
+ placeholder4: BigNumber;
178
+ placeholder5: BigNumber;
179
+ placeholder6: BigNumber;
180
+ loanApr: BigNumber;
181
+ placeholder7: PublicKey;
182
+ };
183
+ export declare const bondOfferBondingCurveStruct: BeetStruct<BondOfferBondingCurve, Partial<BondOfferBondingCurve>>;
184
+ export declare const bondOfferv3Struct: BeetStruct<BondOfferv3, Partial<BondOfferv3>>;
185
+ export declare enum Fraktbondstate {
186
+ Initialized = 0,
187
+ Active = 1,
188
+ Repaid = 2,
189
+ Liquidating = 3,
190
+ Liquidated = 4,
191
+ Perpetualactive = 5,
192
+ Perpetualrepaid = 6,
193
+ Perpetualliquidatedbyauction = 7,
194
+ Perpetualliquidatedbyclaim = 8
195
+ }
196
+ export type Fraktbond = {
197
+ accountDiscriminator: number[];
198
+ fraktBondState: Fraktbondstate;
199
+ bondTradeTransactionsCounter: number;
200
+ borrowedAmount: BigNumber;
201
+ banxStake: PublicKey;
202
+ fraktMarket: PublicKey;
203
+ leverageBasePoints: BigNumber;
204
+ actualReturnedAmount: BigNumber;
205
+ terminatedCounter: number;
206
+ fbondTokenMint: PublicKey;
207
+ fbondTokenSupply: BigNumber;
208
+ activatedAt: BigNumber;
209
+ liquidatingAt: BigNumber;
210
+ fbondIssuer: PublicKey;
211
+ repaidOrLiquidatedAt: BigNumber;
212
+ currentPerpetualBorrowed: BigNumber;
213
+ lastTransactedAt: BigNumber;
214
+ refinanceAuctionStartedAt: BigNumber;
215
+ };
216
+ export declare const FraktbondStruct: BeetStruct<Fraktbond, Partial<Fraktbond>>;
217
+ export type BanxPool = {
218
+ accountDiscriminator: number[];
219
+ };
220
+ export declare const banxPoolStruct: BeetStruct<BanxPool, Partial<BanxPool>>;
221
+ export type BanxPoolMarketSettings = {
222
+ accountDiscriminator: number[];
223
+ };
224
+ export declare const banxPoolMarketSettingsStruct: BeetStruct<BanxPoolMarketSettings, Partial<BanxPoolMarketSettings>>;
225
+ export declare enum BanxPoolUserDepositState {
226
+ None = 0,
227
+ Active = 1,
228
+ Closed = 2
229
+ }
230
+ export type BanxPoolUserDeposit = {
231
+ accountDiscriminator: number[];
232
+ userDepositState: BanxPoolUserDepositState;
233
+ banxPool: PublicKey;
234
+ user: PublicKey;
235
+ depositAmount: BigNumber;
236
+ depositedAt: BigNumber;
237
+ depositedAtCumulative: BigNumber;
238
+ requestedWithdrawAmount: BigNumber;
239
+ rewardsHarvested: BigNumber;
240
+ lastTransactedAt: BigNumber;
241
+ lossCumulative: BigNumber;
242
+ totalLossAmount: BigNumber;
243
+ placeholder1: BigNumber;
244
+ placeholder2: BigNumber;
245
+ placeholder3: BigNumber;
246
+ placeholder4: PublicKey;
247
+ };
248
+ export declare const banxPoolUserDepositStruct: BeetStruct<BanxPoolUserDeposit, Partial<BanxPoolUserDeposit>>;