@mycelium-sdk/core
    Preparing search index...

    Interface VaultBalance

    The info about current user's balance in a protocol vault

    The generic type that shows fields that should be present in a protocol vault balance

    interface VaultBalance {
        depositedAmount: string;
        shares: string;
        vaultInfo: VaultInfo;
    }
    Index

    Properties

    depositedAmount: string

    amount of deposited tokens in a protocol vault (e.g. sUSDC)

    shares: string

    amount of shares in a protocol vault based on a deposited amount

    vaultInfo: VaultInfo

    info about a protocol vault where a user deposited funds