@@ -18,6 +18,7 @@ Returns the master data of the vault
18
18
``` ts
19
19
type Output = {
20
20
apy: number
21
+ baseApy: number
21
22
version: number
22
23
isErc20: boolean
23
24
capacity: string
@@ -50,40 +51,41 @@ type Output = {
50
51
}
51
52
` ` `
52
53
53
- | Name | Description |
54
- |-----------------------------|-------------------------------------------------|
55
- | ` version ` | Vault version |
56
- | ` apy ` | Current vault apy |
57
- | ` isErc20 ` | Does the vault have its own ERC20 token |
58
- | ` capacity ` | Maximum TVL of Vault |
59
- | ` createdAt ` | Date of Creation |
60
- | ` feePercent ` | Commission rate |
61
- | ` isPrivate ` | Whether the vault is private |
62
- | ` isGenesis ` | Is a stakewise vault |
63
- | ` queuedShares ` | The total number of queued shares |
64
- | ` isBlocklist ` | Whether the vault has blocklist |
65
- | ` vaultAdmin ` | Vault administrator address |
66
- | ` totalAssets ` | TVL of Vault |
67
- | ` feeRecipient ` | Vault fee address |
68
- | ` whitelistManager ` | Whitelist manager |
69
- | ` vaultAddress ` | Address of vault |
70
- | ` mevRecipient ` | Validator fee recipient |
71
- | ` whitelistCount ` | Number of addresses in the [whitelist](/vault/requests/getwhitelist) |
72
- | ` blocklistCount ` | Number of addresses in the [blocklist](/vault/requests/getblocklist) |
73
- | ` imageUrl ` | Link for vault logo |
74
- | ` blocklistManager ` | Blocklist manager |
75
- | ` depositDataManager ` | Keys manager address |
76
- | ` isSmoothingPool ` | Smoothing poll or Vault escrow |
77
- | ` tokenName ` | ERC20 token name |
78
- | ` tokenSymbol ` | ERC20 token symbol |
79
- | ` displayName ` | Name of vault |
80
- | ` allocatorMaxBoostApy ` | The average max boost APY earned in this vault by the allocator |
81
- | ` osTokenHolderMaxBoostApy ` | The average max boost APY earned in this vault by the osToken holder |
82
- | ` description ` | Description of vault |
83
- | ` whitelist ` | List of authorized users for deposits |
84
- | ` blocklist ` | List of blocked users for deposits |
85
- | ` performance ` | Vault performance indicator (percent) |
86
- | ` osTokenConfig ` | contains the ltvPercent, which is the percentage used to calculate how much a user can mint in OsToken shares, and thresholdPercent, which is the liquidation threshold percentage used to calculate the health factor for the OsToken position |
54
+ | Name | Description |
55
+ |----------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
56
+ | ` version ` | Vault version |
57
+ | ` apy ` | Current vault apy |
58
+ | ` baseApy ` | The vault average weekly base APY (without extra incentives) |
59
+ | ` isErc20 ` | Does the vault have its own ERC20 token |
60
+ | ` capacity ` | Maximum TVL of Vault |
61
+ | ` createdAt ` | Date of Creation |
62
+ | ` feePercent ` | Commission rate |
63
+ | ` isPrivate ` | Whether the vault is private |
64
+ | ` isGenesis ` | Is a stakewise vault |
65
+ | ` queuedShares ` | The total number of queued shares |
66
+ | ` isBlocklist ` | Whether the vault has blocklist |
67
+ | ` vaultAdmin ` | Vault administrator address |
68
+ | ` totalAssets ` | TVL of Vault |
69
+ | ` feeRecipient ` | Vault fee address |
70
+ | ` whitelistManager ` | Whitelist manager |
71
+ | ` vaultAddress ` | Address of vault |
72
+ | ` mevRecipient ` | Validator fee recipient |
73
+ | ` whitelistCount ` | Number of addresses in the [whitelist](/vault/requests/getwhitelist) |
74
+ | ` blocklistCount ` | Number of addresses in the [blocklist](/vault/requests/getblocklist) |
75
+ | ` imageUrl ` | Link for vault logo |
76
+ | ` blocklistManager ` | Blocklist manager |
77
+ | ` depositDataManager ` | Keys manager address |
78
+ | ` isSmoothingPool ` | Smoothing poll or Vault escrow |
79
+ | ` tokenName ` | ERC20 token name |
80
+ | ` tokenSymbol ` | ERC20 token symbol |
81
+ | ` displayName ` | Name of vault |
82
+ | ` allocatorMaxBoostApy ` | The average max boost APY earned in this vault by the allocator |
83
+ | ` osTokenHolderMaxBoostApy ` | The average max boost APY earned in this vault by the osToken holder |
84
+ | ` description ` | Description of vault |
85
+ | ` whitelist ` | List of authorized users for deposits |
86
+ | ` blocklist ` | List of blocked users for deposits |
87
+ | ` performance ` | Vault performance indicator (percent) |
88
+ | ` osTokenConfig ` | contains the ltvPercent, which is the percentage used to calculate how much a user can mint in OsToken shares, and thresholdPercent, which is the liquidation threshold percentage used to calculate the health factor for the OsToken position |
87
89
88
90
#### Example:
89
91
0 commit comments