@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 +62 -9
- package/dist/index.cjs +1 -1
- package/dist/index.js +75 -73
- package/dist/index2.cjs +17 -17
- package/dist/index2.js +558 -528
- package/package.json +1 -1
- package/src/index.ts +10 -1
- package/src/metrics/get-additional-rewards.ts +68 -0
- package/src/metrics/get-lbtc-apy.ts +47 -0
- package/src/metrics/get-lbtc-stats.ts +0 -18
- package/src/metrics/{get-rewards-info.stories.tsx → get-positions-summary.stories.tsx} +5 -5
- package/src/metrics/get-positions-summary.ts +134 -0
- package/src/metrics/get-rewards-info.ts +0 -72
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
|
|
530
|
+
#### 9.5. Getting the positions (yield) summary
|
|
532
531
|
|
|
533
|
-
The information about the
|
|
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
|
|
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
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
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.
|
|
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 {
|
|
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
|
-
|
|
3
|
+
e as BTC_DECIMALS,
|
|
4
4
|
t as BasculeDepositStatus,
|
|
5
|
-
|
|
6
|
-
|
|
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
|
-
|
|
16
|
-
|
|
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
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
y as TOKEN_ADDRESSES,
|
|
29
|
+
D as Token,
|
|
30
|
+
R as Vault,
|
|
31
31
|
O as addChain,
|
|
32
32
|
F as approveLBTC,
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
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
|
-
|
|
40
|
-
|
|
39
|
+
U as deposit,
|
|
40
|
+
f as fromSatoshi,
|
|
41
41
|
W as generateDepositBtcAddress,
|
|
42
|
-
b as
|
|
43
|
-
x as
|
|
44
|
-
G as
|
|
45
|
-
K as
|
|
46
|
-
q as
|
|
47
|
-
z as
|
|
48
|
-
j as
|
|
49
|
-
J as
|
|
50
|
-
Q as
|
|
51
|
-
X as
|
|
52
|
-
Y as
|
|
53
|
-
Z as
|
|
54
|
-
$ as
|
|
55
|
-
aa as
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
ta as
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
ra as
|
|
62
|
-
ga as
|
|
63
|
-
da as
|
|
64
|
-
oa as
|
|
65
|
-
Sa as
|
|
66
|
-
Aa as
|
|
67
|
-
Ta as
|
|
68
|
-
Na as
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
Ca as
|
|
72
|
-
_a as
|
|
73
|
-
Ea as
|
|
74
|
-
ka as
|
|
75
|
-
ua as
|
|
76
|
-
wa as
|
|
77
|
-
la as
|
|
78
|
-
ca as
|
|
79
|
-
ha as
|
|
80
|
-
La as
|
|
81
|
-
pa as
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
Oa as
|
|
86
|
-
Fa as
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
va as
|
|
92
|
-
Pa as
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
Wa as
|
|
96
|
-
ba as
|
|
97
|
-
xa as
|
|
98
|
-
Ga as
|
|
99
|
-
Ka as
|
|
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
|
};
|