Liquid Locker
Liquid Locker Integration Guide
{
"name": string; // The name of your protocol.
"totalUsers": number; // (Optional) Total number of individual wallets interacting with your protocol.
"totalBalanceUsd": number; // (Optional) The total balance held in USD.
"supportedAssets": [ // Array of liquid token(s) your service supports.
{
"contractAddress": string; // On-Chain contract of the locker.
"symbol": string; // The symbol of the token.
"slug": string; // The token slug (Coingecko ID or learn more below).
"baseSlug": string; // The slug of the base asset.
"chain": string; // The chain the vault is deployed on, use of the coingecko slug
"supply": number; // The total token supply of the token.
"balanceUSD": number; // The $ value of tokens in the locker.
"apr": number; // Annual percentage rate before fees.
"aprBreakdown": [ // Breakdown of the APR components
{
"slug": string; // The token slug (Coingecko ID or learn more below).
"apr": number; // Annual percentage rate
}
]
"fee": number; // Fee percentage for staking services.
"users": number; // Number of individual wallets holding the token.
"unstakingTime": number; // Time in seconds to unbond - not exchanging!
"exchangeRatio": number; // Ratio of the base asset to the token.
}
]
}2. Requesting Staking Rewards Asset and Operator Slugs
Last updated