ScheduledSEALED
@□#^░?□○▫◇!╱░&▒█■#◇@◆?@░▒█◆▓◇╱@█░□◆&█░?╳#▪○◆*▫╳╱#▪░?╳~◆$╳@●#╱$▓◆
Transaction ID
Transaction Summary
ScheduledScript 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}