@lombard.finance/sdk 3.6.2 → 3.6.3

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,73 @@ 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
+
561
+ #### 9.6. Getting the LBTC APY
562
+
563
+ To retrieve the current APY (annual percentage yield) for LBTC, call this function:
542
564
 
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
565
+ ```javascript
566
+ const apy = await getApy({
567
+ account, // The optional account address. Pass it for more accurate APY data.
568
+ env, // Optional env flag
569
+ })
570
+ ```
571
+ The above returns:
572
+
573
+ * **`baseApy: BigNumber`**
574
+ The base APY for LBTC, representing the nominal yield without any bonuses or adjustments.
575
+ * **`effectiveApy: BigNumber`**
576
+ The effective APY for LBTC, including any additional rewards, compounding effects, or protocol-specific incentives.
577
+
578
+ #### 9.7. Getting the additional rewards data
579
+
580
+ In order to retrieve the additional rewards that have been distributed or are pending use the below function:
581
+
582
+ ```javascript
583
+ const rewards = await getAdditionalRewards({
584
+ account,
585
+ env,
586
+ });
587
+ ```
588
+
589
+ The above returns:
590
+
591
+ * **`distributed: Array<{ name: string; amount: BigNumber }>`**
592
+ A list of campaigns where BTC rewards have already been distributed.
593
+ * **`name`** (`string`): Name of the reward campaign.
594
+ * **`amount`** (`BigNumber`): Amount of BTC distributed for the campaign.
595
+
596
+ * **`undistributed: Array<{ name: string; amount: BigNumber }>`**
597
+ A list of campaigns where BTC rewards are still pending distribution.
598
+ * **`name`** (`string`): Name of the reward campaign.
599
+ * **`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.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,9 +1,9 @@
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 { aR as e, V as t, av as i, aJ as n, aI as r, F as g, G as d, t as o, y as S, z as A, O as T, P as N, aP as B, an as I, at as C, ar as _, A as E, aS as k, S as u, h as w, j as l, k as c, aH as h, m as L, n as p, aQ as y, aO as D, ac as R, aM as O, a2 as F, v as m, w as H, x as M, ag as V, a3 as v, al as P, ad as U, aT as f, C as W, r as b, au as x, q as G, W as K, az as q, u as z, ay as j, aD as J, aw as Q, D as X, E as Y, I as Z, ax as $, K as aa, Y as sa, J as ea, X as ta, o as ia, $ as na, aN as ra, Z as ga, L as da, a0 as oa, M as Sa, p as Aa, _ as Ta, am as Na, ao as Ba, ap as Ia, aq as Ca, aa as _a, ab as Ea, aC as ka, aB as ua, a1 as wa, aA as la, N as ca, Q as ha, ak as La, ae as pa, ai as ya, aj as Da, ah as Ra, aK as Oa, as as Fa, aL as ma, aE as Ha, aF as Ma, a4 as Va, af as va, a9 as Pa, R as Ua, a5 as fa, a6 as Wa, a7 as ba, T as xa, U as Ga, aG as Ka, aU as qa, a8 as za } 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,
5
+ i as BlockchainIdentifier,
6
+ n as CHAIN_ID_TO_VIEM_CHAIN_MAP,
7
7
  r as ChainId,
8
8
  g as ENotarizationStatus,
9
9
  d as ESessionState,
@@ -12,8 +12,8 @@ export {
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
18
  _ as RewardWithdrawalStatus,
19
19
  E as SANCTIONED_ADDRESS,
@@ -25,76 +25,78 @@ 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
32
  F as approveLBTC,
33
- H as bridge,
34
- M as bridgeCCIP,
35
- V as bridgeOFT,
36
- m as cancelWithdraw,
33
+ m as bridge,
34
+ H as bridgeCCIP,
35
+ M as bridgeOFT,
36
+ V 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 getEthNetworkByEnv,
55
+ aa as getExchangeRatio,
56
+ sa as getLBTCBurningFee,
57
+ ea as getLBTCExchangeRate,
58
+ ta as getLBTCMintingFee,
59
+ ia as getLBTCStats,
60
+ na as getLBTCTotalSupply,
61
+ ra as getLbtcContractAddresses,
62
+ ga as getMintingFee,
63
+ da as getNetworkFeeSignature,
64
+ oa as getPermitNonce,
65
+ Sa as getPointsByAddress,
66
+ Aa as getPositionsSummary,
67
+ Ta as getRedeemFee,
68
+ Na as getRewardBalances,
69
+ Ba as getRewardSigningData,
70
+ Ia as getRewardWithdrawalFee,
71
+ Ca as getRewardWithdrawals,
72
+ _a as getShareValue,
73
+ Ea as getSharesByAddress,
74
+ ka as getSolanaNetworkByEnv,
75
+ ua as getSonicNetworkByEnv,
76
+ wa as getStakeAndBakeFee,
77
+ la as getSuiNetworkByEnv,
78
+ ca as getUnstakesByAddress,
79
+ ha as getUserStakeAndBakeSignature,
80
+ La as getVaultApy,
81
+ pa as getVaultDeposits,
82
+ ya as getVaultPoints,
83
+ Da as getVaultTVL,
84
+ Ra as getVaultWithdrawals,
85
+ Oa as isKatanaChain,
86
+ Fa as isRewardTokenSupported,
87
+ ma as isValidChain,
88
+ Ha as katana,
89
+ Ma as katanaTatara,
90
+ Va as mintToken,
91
+ va as queueWithdraw,
92
+ Pa as redeemToken,
93
+ Ua as setReferral,
94
+ fa as signLbtcDestinationAddr,
95
+ Wa as signNetworkFee,
96
+ ba as signStakeAndBake,
97
+ xa as storeNetworkFeeSignature,
98
+ Ga as storeStakeAndBakeSignature,
99
+ Ka as tac,
100
+ qa as toSatoshi,
101
+ za as unstakeLBTC
100
102
  };