Vault Operations
Get APY
Fetches the vault’s current APY, net of the fee the vault charges.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
const vault = 'CAQ6PAG4X6L7LJVGOKSQ6RU2LADWK4EQXRJGMUWL7SECS7LXUEQLM5U7';
async function apy(apiClient: ApiClient): number {
const {apy} = await apiClient.getData("apy", vault);
return apy;
}
Was this page helpful?