TransactionSEALED

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

Transaction ID

Timestamp

Dec 04, 2025, 04:44:06 AM UTC
2mo ago

Block Height

134,868,122

Computation

0

Execution Error

Error Code: 1007

error caused by: 1 error occurred:

Raw Error

[Error Code: 1007] error caused by: 1 error occurred: * checking sequence number failed: [Error Code: 1007] invalid proposal key: public key 0 on account b1d63873c3cc9f79 has sequence number 3388, but given 3387

Transaction Summary

Transaction

Script Arguments

0idUInt64
20
1forceBool
true

Cadence Script

1import DeFiActions from 0x6d888f175c158410
2
3import FlowVaultsAutoBalancers from 0xb1d63873c3cc9f79
4
5/// Calls on the AutoBalancer to rebalance which will result in a rebalancing around the value of deposits. If force is
6/// `true`, rebalancing should occur regardless of the lower & upper thresholds configured on the AutoBalancer.
7/// Otherwise, rebalancing will only occur if the value of deposits is above or below the relative thresholds and
8/// a rebalance Sink or Source is set.
9///
10/// For more information on DeFiActions AutoBalancers, see the DeFiActions contract.
11///
12/// @param id: The Tide ID for which the AutoBalancer is associated
13/// @param force: Whether or not to force rebalancing, bypassing it's thresholds for automatic rebalancing
14///
15transaction(id: UInt64, force: Bool) {
16    // the AutoBalancer that will be rebalanced
17    let autoBalancer: auth(DeFiActions.Auto) &DeFiActions.AutoBalancer
18    
19    prepare(signer: auth(BorrowValue) &Account) {
20        // derive the path and borrow an authorized reference to the AutoBalancer
21        let storagePath = FlowVaultsAutoBalancers.deriveAutoBalancerPath(id: id, storage: true) as! StoragePath
22        self.autoBalancer = signer.storage.borrow<auth(DeFiActions.Auto) &DeFiActions.AutoBalancer>(from: storagePath)
23            ?? panic("Could not borrow reference to AutoBalancer id \(id) at path \(storagePath)")
24    }
25
26    execute {
27        self.autoBalancer.rebalance(force: force)
28    }
29}