TransactionSEALED
▓○▓&▒?╱*○╱╲?%~■▓█~○%╳◇?!▫╱▪#▒▒░*╳%~╳?&╳▫○&◇!%╳&▒█▫╲◆@▓╱~◆~&╳▫◇#◆
Transaction ID
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 12013 on account 6a5a9c49e5b2ad53 has sequence number 121, but given 120
Transaction Summary
TransactionScript Arguments
0list[UInt64]
[ "12542", "23287", "26314", "3642", "28438", "29140", "93", "22452", "18053", "21005" ]
Cadence Script
1import BloctoTokenStaking from 0x0f9df91c9121c460
2
3transaction (list: [UInt64]) {
4 let adminRef: auth(BloctoTokenStaking.AdminEntitlement) &BloctoTokenStaking.Admin
5
6 prepare(signer: auth(BorrowValue) &Account) {
7 self.adminRef = signer.storage.borrow<auth(BloctoTokenStaking.AdminEntitlement) &BloctoTokenStaking.Admin>(from: BloctoTokenStaking.StakingAdminStoragePath)
8 ?? panic("Could not borrow reference to staking admin")
9 }
10
11 execute {
12 self.adminRef.payRewards(list)
13 }
14}