ScheduledSEALED

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

Transaction ID

Timestamp

Feb 03, 2026, 02:17:14 PM UTC
3w ago

Block Height

141,011,927

Computation

0

Proposerseq:0 key:0

Authorizers

1

Transaction Summary

Scheduled

Script Arguments

Cadence Script

1import FlowTransactionScheduler from 0xe467b9dd11fa00df
2
3// Process scheduled transactions by the FlowTransactionScheduler contract.
4// This will be called by the FVM and all scheduled transactions that should be 
5// executed will be processed. An event for each will be emitted.
6transaction {
7    prepare(serviceAccount: auth(BorrowValue) &Account) {
8        let scheduler = serviceAccount.storage.borrow<auth(FlowTransactionScheduler.Process) &FlowTransactionScheduler.SharedScheduler>(from: FlowTransactionScheduler.storagePath)
9            ?? panic("Could not borrow FlowTransactionScheduler")
10
11        scheduler.process()
12    }
13}