TransactionSEALED

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

Transaction ID

Timestamp

Jun 18, 2025, 01:34:06 PM UTC
8mo ago

Block Height

116,820,169

Computation

0

Authorizers

None

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 678 on account b3bfd51c89087537 has sequence number 1578, but given 1577

Transaction Summary

Transaction

Script Arguments

0hexEncodedTxString
f8ee830238c78405f5e100832db7f994d38bf5248a5fcb2de8097f2a2ce86d5be69f935c80b8842a3774a20000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000378000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008205f9a03088273b19b40fe830181a3dda0c3fbf466707201da9211bbf4a523202fe2058a0258a8eb0b76604ef2cf1717df17a51ea431e8cbe857ff48397ca394730ee5272

Cadence Script

1import EVM from 0xe467b9dd11fa00df
2
3transaction(hexEncodedTx: String, coinbase: String) {
4    execute {
5        let txResult = EVM.run(
6            tx: hexEncodedTx.decodeHex(),
7            coinbase: EVM.addressFromString(coinbase)
8        )
9        assert(
10            txResult.status == EVM.Status.failed || txResult.status == EVM.Status.successful,
11            message: "evm_error=".concat(txResult.errorMessage).concat("\n")
12        )
13    }
14}