TransactionSEALED

▪#■▒□&□●*●@◆$░○╳■!╲□█?!$░@■○█○?^░▒#~◆●▪!▪╱▒~~●%▫$▫%╲#@*@▫▓□&!&▫■

Transaction ID

Timestamp

Sep 05, 2024, 12:47:02 PM UTC
1y ago

Block Height

86,041,824

Computation

0

Execution Fee

0.00001482 FLOW

Proposerseq:26168 key:0

Authorizers

1

Transaction Summary

Contract Call

Called LendingInterfaces, LendingConfig

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}