Key UpdateSEALED

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

Transaction ID

Timestamp

Feb 12, 2026, 11:42:03 AM UTC
2w ago

Block Height

141,971,754

Computation

0

Execution Fee

0.00062 FLOW

Transaction Summary

Key Update

Updated account key

Script Arguments

0publicKeyString
97636f05a27ebba29a7cca76233935ddb6f919fd78dbadf2b3f189af90ddc1b5b960412ee81d8c882a8e20e20c4fe710e16b95cf875ec9851e74055fcf36ae1e
1signatureAlgorithmUInt8
1
2hashAlgorithmUInt8
1
3weightUFix64
500.0

Cadence Script

1// Flow Wallet - mainnet Script  addKey - v2.72
2// Android - r3.0.10 - 400000400 
3
4import Crypto
5
6transaction(publicKey: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {
7    prepare(signer: auth(Keys) &Account) {
8        let key = PublicKey(
9            publicKey: publicKey.decodeHex(),
10            signatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!
11        )
12
13        signer.keys.add(
14            publicKey: key,
15            hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!,
16            weight: weight
17        )
18    }
19}