@lombard.finance/sdk 3.6.2 → 3.6.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/README.md CHANGED
@@ -501,7 +501,6 @@ The stats contain:
501
501
  * `price` - the current BTC price,
502
502
  * `supply` - the number of LBTC minted,
503
503
  * `tvl` - the Lombard's TVL in USD.
504
- * `apr` - staking APR
505
504
 
506
505
 
507
506
  #### 9.4. Getting the LBTC exchange ratio.
@@ -528,19 +527,99 @@ The result of the above function is an object which contains:
528
527
  * `BTCTokenRatio` - The BTC:Token ratio (1 / tokenBTCRatio) answering the question of how many BTC will I get for 1 Token.
529
528
 
530
529
 
531
- #### 9.5. Getting the rewards info
530
+ #### 9.5. Getting the positions (yield) summary
532
531
 
533
- The information about the rewards acquired by an account can be obtained via the `getRewardsInfo` function as shown below:
532
+ The information about the yield acquired by an account can be obtained via the `getPositionsSummary` function as shown below:
534
533
 
535
534
  ```javascript
536
- const rewardsInfo = await getRewardsInfo({
535
+ const rewardsInfo = await getPositionsSummary({
537
536
  account, // The account address
538
537
  env // Optional env flag
539
538
  });
540
539
  ```
541
- The results of the includes:
540
+ The results of the above includes:
541
+
542
+ * **`btcPrice: { price: BigNumber; timestamp: Date; }`**
543
+ Contains the current price of BTC in USD and the time it was last fetched.
544
+ * **`price`** (`BigNumber`): The price of 1 BTC in USD.
545
+ * **`timestamp`** (`Date`): The timestamp when the price was last updated.
546
+ * **`btcValue: BigNumber`**
547
+ The total value of all holdings, expressed in BTC.
548
+ * **`btcPnl: BigNumber`**
549
+ The total profit or loss across all positions, represented in BTC.
550
+ * **`snapshot: Array<{ token, type, balance, pnl, rate }>`**
551
+ A list of individual positions used in PnL calculations. Each entry includes:
552
+ * **`token`** (`Token | undefined`): The token associated with the position (e.g., `Token.LBTC`). May be `undefined` if unspecified.
553
+ * **`type`** (`PositionType`): The classification or source of the position (e.g., staking, trading).
554
+ * **`balance`** (`BigNumber`): The quantity of the token held.
555
+ * **`pnl`** (`BigNumber`): The profit or loss for this specific position, in BTC.
556
+ * **`rate`** (`BigNumber`): The conversion rate from token to BTC.
557
+ _Formula: `balance * rate = BTC equivalent`_
558
+ * **`lastUpdated: Date`**
559
+ The timestamp when the position summary was last updated.
560
+ * **`inProgress: boolean`**
561
+ Indicates whether the backend is currently processing the PnL calculation.
562
+ - `true`: A new calculation request was received, but the backend is experiencing high load
563
+ or processing is not yet complete. The latest data is not yet available.
564
+ - `false`: The most recent calculation has been completed and cached.
565
+ Use `lastUpdated` to understand how fresh the data is:
566
+ - If `lastUpdated` is recent (e.g., within the last few seconds), you're seeing the latest data.
567
+ - If `lastUpdated` is up to 30 minutes old, you're seeing cached data from a recent request.
568
+ The backend avoids recalculating within this caching window.
569
+
570
+
571
+ #### 9.6. Getting the LBTC APY
572
+
573
+ To retrieve the current APY (annual percentage yield) for LBTC, call this function:
542
574
 
543
- * `type` - the type of a reward,
544
- * `totalLbtcBalance` - the total LBTC balance,
545
- * `totalRewards` - the amount of total rewards earned,
546
- * `totalRewardsCost` - the amount of cost associated with the earned rewards
575
+ ```javascript
576
+ const apy = await getApy({
577
+ account, // The optional account address. Pass it for more accurate APY data.
578
+ env, // Optional env flag
579
+ })
580
+ ```
581
+ The above returns:
582
+
583
+ * **`baseApy: BigNumber`**
584
+ The base APY for LBTC, representing the nominal yield without any bonuses or adjustments.
585
+ * **`effectiveApy: BigNumber`**
586
+ The effective APY for LBTC, including any additional rewards, compounding effects, or protocol-specific incentives.
587
+
588
+ To retrieve the estimated APY (annual percentage yield) for LBTC in the context of a specific partner integration, use the `getEstimatedApy` function:
589
+
590
+ ```javascript
591
+ const estimated = await getEstimatedApy({
592
+ partnerId, // Optional partner identifier. Influences the estimated APY.
593
+ env, // Optional env flag
594
+ });
595
+ ```
596
+
597
+ The above returns:
598
+
599
+ * **`estimatedApy: BigNumber`**
600
+ The estimated APY for LBTC, taking into account partner-specific incentives, compounding assumptions, and projected rewards. This value may differ from the effective APY depending on the partner context.
601
+
602
+ > **Note**: If no `partnerId` is provided, the function returns a default estimate based on global assumptions.
603
+
604
+ #### 9.7. Getting the additional rewards data
605
+
606
+ In order to retrieve the additional rewards that have been distributed or are pending use the below function:
607
+
608
+ ```javascript
609
+ const rewards = await getAdditionalRewards({
610
+ account,
611
+ env,
612
+ });
613
+ ```
614
+
615
+ The above returns:
616
+
617
+ * **`distributed: Array<{ name: string; amount: BigNumber }>`**
618
+ A list of campaigns where BTC rewards have already been distributed.
619
+ * **`name`** (`string`): Name of the reward campaign.
620
+ * **`amount`** (`BigNumber`): Amount of BTC distributed for the campaign.
621
+
622
+ * **`undistributed: Array<{ name: string; amount: BigNumber }>`**
623
+ A list of campaigns where BTC rewards are still pending distribution.
624
+ * **`name`** (`string`): Name of the reward campaign.
625
+ * **`amount`** (`BigNumber`): Amount of BTC yet to be distributed.
package/dist/index.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index2.cjs");exports.BTC_DECIMALS=e.BTC_DECIMALS;exports.BasculeDepositStatus=e.BasculeDepositStatus;exports.BlockchainIdentifier=e.BlockchainIdentifier;exports.CHAIN_ID_TO_VIEM_CHAIN_MAP=e.CHAIN_ID_TO_VIEM_CHAIN_MAP;exports.ChainId=e.ChainId;exports.ENotarizationStatus=e.ENotarizationStatus;exports.ESessionState=e.ESessionState;exports.Env=e.t;exports.OFT_GAS_LIMIT=e.OFT_GAS_LIMIT;exports.OFT_HI_GAS_LIMIT=e.OFT_HI_GAS_LIMIT;exports.OFT_HI_GAS_LIMIT_CHAINS=e.OFT_HI_GAS_LIMIT_CHAINS;exports.PayoutTxStatus=e.PayoutTxStatus;exports.RATIO_TOKEN_MAP=e.RATIO_TOKEN_MAP;exports.RewardBlockchainType=e.RewardBlockchainType;exports.RewardToken=e.RewardToken;exports.RewardWithdrawalStatus=e.RewardWithdrawalStatus;exports.SANCTIONED_ADDRESS=e.SANCTIONED_ADDRESS;exports.SATOSHI_SCALE=e.SATOSHI_SCALE;exports.SOLANA_DEVNET_CHAIN=e.SOLANA_DEVNET_CHAIN;exports.SOLANA_MAINNET_CHAIN=e.SOLANA_MAINNET_CHAIN;exports.SOLANA_TESTNET_CHAIN=e.SOLANA_TESTNET_CHAIN;exports.SUI_DEVNET_CHAIN=e.SUI_DEVNET_CHAIN;exports.SUI_LOCALNET_CHAIN=e.SUI_LOCALNET_CHAIN;exports.SUI_MAINNET_CHAIN=e.SUI_MAINNET_CHAIN;exports.SUI_TESTNET_CHAIN=e.SUI_TESTNET_CHAIN;exports.TOKEN_ADDRESSES=e.TOKEN_ADDRESSES;exports.Token=e.Token;exports.Vault=e.Vault;exports.addChain=e.addChain;exports.approveLBTC=e.approveLBTC;exports.bridge=e.bridge;exports.bridgeCCIP=e.bridgeCCIP;exports.bridgeOFT=e.bridgeOFT;exports.cancelWithdraw=e.cancelWithdraw;exports.claimLBTC=e.claimLBTC;exports.claimReward=e.claimReward;exports.deposit=e.deposit;exports.fromSatoshi=e.fromSatoshi;exports.generateDepositBtcAddress=e.generateDepositBtcAddress;exports.getApiConfig=e.getApiConfig;exports.getBasculeDepositStatus=e.getBasculeDepositStatus;exports.getBaseNetworkByEnv=e.getBaseNetworkByEnv;exports.getBridgeInfo=e.getBridgeInfo;exports.getBscNetworkByEnv=e.getBscNetworkByEnv;exports.getChainIdByName=e.getChainIdByName;exports.getChainNameById=e.getChainNameById;exports.getDepositBtcAddress=e.getDepositBtcAddress;exports.getDepositBtcAddresses=e.getDepositBtcAddresses;exports.getDepositsByAddress=e.getDepositsByAddress;exports.getEthNetworkByEnv=e.getEthNetworkByEnv;exports.getExchangeRatio=e.getExchangeRatio;exports.getLBTCBurningFee=e.getLBTCBurningFee;exports.getLBTCExchangeRate=e.getLBTCExchangeRate;exports.getLBTCMintingFee=e.getLBTCMintingFee;exports.getLBTCStats=e.getLBTCStats;exports.getLBTCTotalSupply=e.getLBTCTotalSupply;exports.getLbtcContractAddresses=e.getLbtcContractAddresses;exports.getMintingFee=e.getMintingFee;exports.getNetworkFeeSignature=e.getNetworkFeeSignature;exports.getPermitNonce=e.getPermitNonce;exports.getPointsByAddress=e.getPointsByAddress;exports.getRedeemFee=e.getRedeemFee;exports.getRewardBalances=e.getRewardBalances;exports.getRewardSigningData=e.getRewardSigningData;exports.getRewardWithdrawalFee=e.getRewardWithdrawalFee;exports.getRewardWithdrawals=e.getRewardWithdrawals;exports.getRewardsInfo=e.getRewardsInfo;exports.getShareValue=e.getShareValue;exports.getSharesByAddress=e.getSharesByAddress;exports.getSolanaNetworkByEnv=e.getSolanaNetworkByEnv;exports.getSonicNetworkByEnv=e.getSonicNetworkByEnv;exports.getStakeAndBakeFee=e.getStakeAndBakeFee;exports.getSuiNetworkByEnv=e.getSuiNetworkByEnv;exports.getUnstakesByAddress=e.getUnstakesByAddress;exports.getUserStakeAndBakeSignature=e.getUserStakeAndBakeSignature;exports.getVaultApy=e.getVaultApy;exports.getVaultDeposits=e.getVaultDeposits;exports.getVaultPoints=e.getVaultPoints;exports.getVaultTVL=e.getVaultTVL;exports.getVaultWithdrawals=e.getVaultWithdrawals;exports.isKatanaChain=e.isKatanaChain;exports.isRewardTokenSupported=e.isRewardTokenSupported;exports.isValidChain=e.isValidChain;exports.katana=e.katana;exports.katanaTatara=e.katanaTatara;exports.mintToken=e.mintToken;exports.queueWithdraw=e.queueWithdraw;exports.redeemToken=e.redeemToken;exports.setReferral=e.setReferral;exports.signLbtcDestinationAddr=e.signLbtcDestinationAddr;exports.signNetworkFee=e.signNetworkFee;exports.signStakeAndBake=e.signStakeAndBake;exports.storeNetworkFeeSignature=e.storeNetworkFeeSignature;exports.storeStakeAndBakeSignature=e.storeStakeAndBakeSignature;exports.tac=e.tac;exports.toSatoshi=e.toSatoshi;exports.unstakeLBTC=e.unstakeLBTC;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index2.cjs");exports.BTC_DECIMALS=e.BTC_DECIMALS;exports.BasculeDepositStatus=e.BasculeDepositStatus;exports.BlockchainIdentifier=e.BlockchainIdentifier;exports.CHAIN_ID_TO_VIEM_CHAIN_MAP=e.CHAIN_ID_TO_VIEM_CHAIN_MAP;exports.ChainId=e.ChainId;exports.ENotarizationStatus=e.ENotarizationStatus;exports.ESessionState=e.ESessionState;exports.Env=e.t;exports.OFT_GAS_LIMIT=e.OFT_GAS_LIMIT;exports.OFT_HI_GAS_LIMIT=e.OFT_HI_GAS_LIMIT;exports.OFT_HI_GAS_LIMIT_CHAINS=e.OFT_HI_GAS_LIMIT_CHAINS;exports.PayoutTxStatus=e.PayoutTxStatus;exports.RATIO_TOKEN_MAP=e.RATIO_TOKEN_MAP;exports.RewardBlockchainType=e.RewardBlockchainType;exports.RewardToken=e.RewardToken;exports.RewardWithdrawalStatus=e.RewardWithdrawalStatus;exports.SANCTIONED_ADDRESS=e.SANCTIONED_ADDRESS;exports.SATOSHI_SCALE=e.SATOSHI_SCALE;exports.SOLANA_DEVNET_CHAIN=e.SOLANA_DEVNET_CHAIN;exports.SOLANA_MAINNET_CHAIN=e.SOLANA_MAINNET_CHAIN;exports.SOLANA_TESTNET_CHAIN=e.SOLANA_TESTNET_CHAIN;exports.SUI_DEVNET_CHAIN=e.SUI_DEVNET_CHAIN;exports.SUI_LOCALNET_CHAIN=e.SUI_LOCALNET_CHAIN;exports.SUI_MAINNET_CHAIN=e.SUI_MAINNET_CHAIN;exports.SUI_TESTNET_CHAIN=e.SUI_TESTNET_CHAIN;exports.TOKEN_ADDRESSES=e.TOKEN_ADDRESSES;exports.Token=e.Token;exports.Vault=e.Vault;exports.addChain=e.addChain;exports.approveLBTC=e.approveLBTC;exports.bridge=e.bridge;exports.bridgeCCIP=e.bridgeCCIP;exports.bridgeOFT=e.bridgeOFT;exports.cancelWithdraw=e.cancelWithdraw;exports.claimLBTC=e.claimLBTC;exports.claimReward=e.claimReward;exports.deposit=e.deposit;exports.fromSatoshi=e.fromSatoshi;exports.generateDepositBtcAddress=e.generateDepositBtcAddress;exports.getAdditionalRewards=e.getAdditionalRewards;exports.getApiConfig=e.getApiConfig;exports.getApy=e.getApy;exports.getBasculeDepositStatus=e.getBasculeDepositStatus;exports.getBaseNetworkByEnv=e.getBaseNetworkByEnv;exports.getBridgeInfo=e.getBridgeInfo;exports.getBscNetworkByEnv=e.getBscNetworkByEnv;exports.getChainIdByName=e.getChainIdByName;exports.getChainNameById=e.getChainNameById;exports.getDepositBtcAddress=e.getDepositBtcAddress;exports.getDepositBtcAddresses=e.getDepositBtcAddresses;exports.getDepositsByAddress=e.getDepositsByAddress;exports.getEstimatedApy=e.getEstimatedApy;exports.getEthNetworkByEnv=e.getEthNetworkByEnv;exports.getExchangeRatio=e.getExchangeRatio;exports.getLBTCBurningFee=e.getLBTCBurningFee;exports.getLBTCExchangeRate=e.getLBTCExchangeRate;exports.getLBTCMintingFee=e.getLBTCMintingFee;exports.getLBTCStats=e.getLBTCStats;exports.getLBTCTotalSupply=e.getLBTCTotalSupply;exports.getLbtcContractAddresses=e.getLbtcContractAddresses;exports.getMintingFee=e.getMintingFee;exports.getNetworkFeeSignature=e.getNetworkFeeSignature;exports.getPermitNonce=e.getPermitNonce;exports.getPointsByAddress=e.getPointsByAddress;exports.getPositionsSummary=e.getPositionsSummary;exports.getRedeemFee=e.getRedeemFee;exports.getRewardBalances=e.getRewardBalances;exports.getRewardSigningData=e.getRewardSigningData;exports.getRewardWithdrawalFee=e.getRewardWithdrawalFee;exports.getRewardWithdrawals=e.getRewardWithdrawals;exports.getShareValue=e.getShareValue;exports.getSharesByAddress=e.getSharesByAddress;exports.getSolanaNetworkByEnv=e.getSolanaNetworkByEnv;exports.getSonicNetworkByEnv=e.getSonicNetworkByEnv;exports.getStakeAndBakeFee=e.getStakeAndBakeFee;exports.getSuiNetworkByEnv=e.getSuiNetworkByEnv;exports.getUnstakesByAddress=e.getUnstakesByAddress;exports.getUserStakeAndBakeSignature=e.getUserStakeAndBakeSignature;exports.getVaultApy=e.getVaultApy;exports.getVaultDeposits=e.getVaultDeposits;exports.getVaultPoints=e.getVaultPoints;exports.getVaultTVL=e.getVaultTVL;exports.getVaultWithdrawals=e.getVaultWithdrawals;exports.isKatanaChain=e.isKatanaChain;exports.isRewardTokenSupported=e.isRewardTokenSupported;exports.isValidChain=e.isValidChain;exports.katana=e.katana;exports.katanaTatara=e.katanaTatara;exports.mintToken=e.mintToken;exports.queueWithdraw=e.queueWithdraw;exports.redeemToken=e.redeemToken;exports.setReferral=e.setReferral;exports.signLbtcDestinationAddr=e.signLbtcDestinationAddr;exports.signNetworkFee=e.signNetworkFee;exports.signStakeAndBake=e.signStakeAndBake;exports.storeNetworkFeeSignature=e.storeNetworkFeeSignature;exports.storeStakeAndBakeSignature=e.storeStakeAndBakeSignature;exports.tac=e.tac;exports.toSatoshi=e.toSatoshi;exports.unstakeLBTC=e.unstakeLBTC;
package/dist/index.js CHANGED
@@ -1,22 +1,22 @@
1
- import { aP as s, T as t, at as n, aH as i, aG as r, E as g, D as d, t as o, w as S, x as A, O as T, P as N, aN as I, al as B, ar as C, ap as _, y as E, aQ as k, S as u, h as w, j as l, k as c, aF as h, m as L, n as p, aO as D, aM as R, aa as y, aK as O, a0 as F, r as H, u as M, v as V, ae as m, a1 as v, aj as P, ab as f, aR as U, z as W, as as b, U as x, ax as G, q as K, aw as q, aB as z, au as j, A as J, C as Q, F as X, av as Y, I as Z, W as $, G as aa, V as ea, o as sa, Z as ta, aL as na, X as ia, J as ra, _ as ga, K as da, Y as oa, ak as Sa, am as Aa, an as Ta, ao as Na, p as Ia, a8 as Ba, a9 as Ca, aA as _a, az as Ea, $ as ka, ay as ua, L as wa, M as la, ai as ca, ac as ha, ag as La, ah as pa, af as Da, aI as Ra, aq as ya, aJ as Oa, aC as Fa, aD as Ha, a2 as Ma, ad as Va, a7 as ma, N as va, a3 as Pa, a4 as fa, a5 as Ua, Q as Wa, R as ba, aE as xa, aS as Ga, a6 as Ka } from "./index2.js";
1
+ import { aS as e, W as t, aw as i, aK as n, aJ as g, G as r, I as d, u as o, z as S, A, O as T, Q as N, aQ as B, ao as I, au as C, as as E, C as _, aT as k, S as u, h as w, j as l, k as c, aI as h, m as L, n as p, aR as y, aP as D, ad as R, aN as O, a3 as m, w as F, x as H, y as V, ah as M, a4 as v, am as P, ae as U, aU as f, D as W, t as b, av as x, q as G, X as K, aA as q, v as z, az as j, aE as J, ax as Q, E as X, F as Y, J as Z, r as $, ay as aa, L as sa, Z as ea, K as ta, Y as ia, o as na, a0 as ga, aO as ra, _ as da, M as oa, a1 as Sa, N as Aa, p as Ta, $ as Na, an as Ba, ap as Ia, aq as Ca, ar as Ea, ab as _a, ac as ka, aD as ua, aC as wa, a2 as la, aB as ca, P as ha, R as La, al as pa, af as ya, aj as Da, ak as Ra, ai as Oa, aL as ma, at as Fa, aM as Ha, aF as Va, aG as Ma, a5 as va, ag as Pa, aa as Ua, T as fa, a6 as Wa, a7 as ba, a8 as xa, U as Ga, V as Ka, aH as qa, aV as za, a9 as ja } from "./index2.js";
2
2
  export {
3
- s as BTC_DECIMALS,
3
+ e as BTC_DECIMALS,
4
4
  t as BasculeDepositStatus,
5
- n as BlockchainIdentifier,
6
- i as CHAIN_ID_TO_VIEM_CHAIN_MAP,
7
- r as ChainId,
8
- g as ENotarizationStatus,
5
+ i as BlockchainIdentifier,
6
+ n as CHAIN_ID_TO_VIEM_CHAIN_MAP,
7
+ g as ChainId,
8
+ r as ENotarizationStatus,
9
9
  d as ESessionState,
10
10
  o as Env,
11
11
  S as OFT_GAS_LIMIT,
12
12
  A as OFT_HI_GAS_LIMIT,
13
13
  T as OFT_HI_GAS_LIMIT_CHAINS,
14
14
  N as PayoutTxStatus,
15
- I as RATIO_TOKEN_MAP,
16
- B as RewardBlockchainType,
15
+ B as RATIO_TOKEN_MAP,
16
+ I as RewardBlockchainType,
17
17
  C as RewardToken,
18
- _ as RewardWithdrawalStatus,
19
- E as SANCTIONED_ADDRESS,
18
+ E as RewardWithdrawalStatus,
19
+ _ as SANCTIONED_ADDRESS,
20
20
  k as SATOSHI_SCALE,
21
21
  u as SOLANA_DEVNET_CHAIN,
22
22
  w as SOLANA_MAINNET_CHAIN,
@@ -25,76 +25,79 @@ export {
25
25
  h as SUI_LOCALNET_CHAIN,
26
26
  L as SUI_MAINNET_CHAIN,
27
27
  p as SUI_TESTNET_CHAIN,
28
- D as TOKEN_ADDRESSES,
29
- R as Token,
30
- y as Vault,
28
+ y as TOKEN_ADDRESSES,
29
+ D as Token,
30
+ R as Vault,
31
31
  O as addChain,
32
- F as approveLBTC,
33
- H as bridge,
34
- M as bridgeCCIP,
32
+ m as approveLBTC,
33
+ F as bridge,
34
+ H as bridgeCCIP,
35
35
  V as bridgeOFT,
36
- m as cancelWithdraw,
36
+ M as cancelWithdraw,
37
37
  v as claimLBTC,
38
38
  P as claimReward,
39
- f as deposit,
40
- U as fromSatoshi,
39
+ U as deposit,
40
+ f as fromSatoshi,
41
41
  W as generateDepositBtcAddress,
42
- b as getApiConfig,
43
- x as getBasculeDepositStatus,
44
- G as getBaseNetworkByEnv,
45
- K as getBridgeInfo,
46
- q as getBscNetworkByEnv,
47
- z as getChainIdByName,
48
- j as getChainNameById,
49
- J as getDepositBtcAddress,
50
- Q as getDepositBtcAddresses,
51
- X as getDepositsByAddress,
52
- Y as getEthNetworkByEnv,
53
- Z as getExchangeRatio,
54
- $ as getLBTCBurningFee,
55
- aa as getLBTCExchangeRate,
56
- ea as getLBTCMintingFee,
57
- sa as getLBTCStats,
58
- ta as getLBTCTotalSupply,
59
- na as getLbtcContractAddresses,
60
- ia as getMintingFee,
61
- ra as getNetworkFeeSignature,
62
- ga as getPermitNonce,
63
- da as getPointsByAddress,
64
- oa as getRedeemFee,
65
- Sa as getRewardBalances,
66
- Aa as getRewardSigningData,
67
- Ta as getRewardWithdrawalFee,
68
- Na as getRewardWithdrawals,
69
- Ia as getRewardsInfo,
70
- Ba as getShareValue,
71
- Ca as getSharesByAddress,
72
- _a as getSolanaNetworkByEnv,
73
- Ea as getSonicNetworkByEnv,
74
- ka as getStakeAndBakeFee,
75
- ua as getSuiNetworkByEnv,
76
- wa as getUnstakesByAddress,
77
- la as getUserStakeAndBakeSignature,
78
- ca as getVaultApy,
79
- ha as getVaultDeposits,
80
- La as getVaultPoints,
81
- pa as getVaultTVL,
82
- Da as getVaultWithdrawals,
83
- Ra as isKatanaChain,
84
- ya as isRewardTokenSupported,
85
- Oa as isValidChain,
86
- Fa as katana,
87
- Ha as katanaTatara,
88
- Ma as mintToken,
89
- Va as queueWithdraw,
90
- ma as redeemToken,
91
- va as setReferral,
92
- Pa as signLbtcDestinationAddr,
93
- fa as signNetworkFee,
94
- Ua as signStakeAndBake,
95
- Wa as storeNetworkFeeSignature,
96
- ba as storeStakeAndBakeSignature,
97
- xa as tac,
98
- Ga as toSatoshi,
99
- Ka as unstakeLBTC
42
+ b as getAdditionalRewards,
43
+ x as getApiConfig,
44
+ G as getApy,
45
+ K as getBasculeDepositStatus,
46
+ q as getBaseNetworkByEnv,
47
+ z as getBridgeInfo,
48
+ j as getBscNetworkByEnv,
49
+ J as getChainIdByName,
50
+ Q as getChainNameById,
51
+ X as getDepositBtcAddress,
52
+ Y as getDepositBtcAddresses,
53
+ Z as getDepositsByAddress,
54
+ $ as getEstimatedApy,
55
+ aa as getEthNetworkByEnv,
56
+ sa as getExchangeRatio,
57
+ ea as getLBTCBurningFee,
58
+ ta as getLBTCExchangeRate,
59
+ ia as getLBTCMintingFee,
60
+ na as getLBTCStats,
61
+ ga as getLBTCTotalSupply,
62
+ ra as getLbtcContractAddresses,
63
+ da as getMintingFee,
64
+ oa as getNetworkFeeSignature,
65
+ Sa as getPermitNonce,
66
+ Aa as getPointsByAddress,
67
+ Ta as getPositionsSummary,
68
+ Na as getRedeemFee,
69
+ Ba as getRewardBalances,
70
+ Ia as getRewardSigningData,
71
+ Ca as getRewardWithdrawalFee,
72
+ Ea as getRewardWithdrawals,
73
+ _a as getShareValue,
74
+ ka as getSharesByAddress,
75
+ ua as getSolanaNetworkByEnv,
76
+ wa as getSonicNetworkByEnv,
77
+ la as getStakeAndBakeFee,
78
+ ca as getSuiNetworkByEnv,
79
+ ha as getUnstakesByAddress,
80
+ La as getUserStakeAndBakeSignature,
81
+ pa as getVaultApy,
82
+ ya as getVaultDeposits,
83
+ Da as getVaultPoints,
84
+ Ra as getVaultTVL,
85
+ Oa as getVaultWithdrawals,
86
+ ma as isKatanaChain,
87
+ Fa as isRewardTokenSupported,
88
+ Ha as isValidChain,
89
+ Va as katana,
90
+ Ma as katanaTatara,
91
+ va as mintToken,
92
+ Pa as queueWithdraw,
93
+ Ua as redeemToken,
94
+ fa as setReferral,
95
+ Wa as signLbtcDestinationAddr,
96
+ ba as signNetworkFee,
97
+ xa as signStakeAndBake,
98
+ Ga as storeNetworkFeeSignature,
99
+ Ka as storeStakeAndBakeSignature,
100
+ qa as tac,
101
+ za as toSatoshi,
102
+ ja as unstakeLBTC
100
103
  };