2️⃣Integration with Account Cap
Code Snippet: Account Cap Integration
public struct Vault has key, store {
id: UID,
account_cap: AccountCap,
sui_index: u8,
usdc_index: u8
}
lending_core::incentive_v2::deposit_with_account_cap(
clock,
storage,
pool_a,
vault.sui_index,
deposit_coin,
inc_v1,
inc_v2,
&vault.account_cap
)Last updated