TransactionSEALED

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

Transaction ID

Timestamp

Aug 29, 2024, 06:02:13 AM UTC
1y ago

Block Height

85,550,417

Computation

0

Proposerseq:0 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: AuthAccount) {
6        let comptrollerRef = getAccount(0xf80cb737bfe7c792).getCapability<&{LendingInterfaces.ComptrollerPublic}>(LendingConfig.ComptrollerPublicPath).borrow()!
7        let poolAddrs = comptrollerRef.getAllMarkets()
8        for poolAddr in poolAddrs {
9            getAccount(poolAddr).getCapability<&{LendingInterfaces.PoolPublic}>(/public/incrementLendingPoolPublic).borrow()!.accrueInterest()
10        }
11    }
12}