TransactionSEALED
▪#■▒□&□●*●@◆$░○╳■!╲□█?!$░@■○█○?^░▒#~◆●▪!▪╱▒~~●%▫$▫%╲#@*@▫▓□&!&▫■
Transaction ID
Execution Fee
0.00001482 FLOWTransaction Summary
Contract CallCalled LendingInterfaces, LendingConfig
Contracts
Script Arguments
Cadence Script
1import LendingInterfaces from 0x2df970b6cdee5735
2import LendingConfig from 0x2df970b6cdee5735
3
4transaction() {
5 prepare(userAccount: &Account) {
6 let comptrollerRef = getAccount(0xf80cb737bfe7c792).capabilities.borrow<&{LendingInterfaces.ComptrollerPublic}>(LendingConfig.ComptrollerPublicPath)!
7 let poolAddrs = comptrollerRef.getAllMarkets()
8 for poolAddr in poolAddrs {
9 getAccount(poolAddr).capabilities.borrow<&{LendingInterfaces.PoolPublic}>(/public/incrementLendingPoolPublic)!.accrueInterest()
10 }
11 }
12}