DeploySEALED

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

Transaction ID

Timestamp

Nov 19, 2025, 06:44:00 AM UTC
3mo ago

Block Height

133,257,533

Computation

0

Execution Fee

0.00000799 FLOW

Transaction Summary

Deploy

Contract deployment

Contract deployment

Script Arguments

0nameString
KeyTester
1codeString
0a61636365737328616c6c2920636f6e7472616374204b6579546573746572207b0a0a2020202061636365737328616c6c292066756e207465737446756e63286163633a2061757468284b6579732920264163636f756e742c207374723a20537472696e6729207b0a20202020202020206c6574206b6579203d205075626c69634b6579280a2020202020202020202020207075626c69634b65793a207374722e6465636f646548657828292c0a2020202020202020202020207369676e6174757265416c676f726974686d3a205369676e6174757265416c676f726974686d2872617756616c75653a203129210a2020202020202020290a20202020202020206163632e6b6579732e616464280a202020202020202020202020202020207075626c69634b65793a206b65792c0a2020202020202020202020202020202068617368416c676f726974686d3a2048617368416c676f726974686d2872617756616c75653a203129212c0a202020202020202020202020202020207765696768743a20313030302e300a202020202020202020202020290a20202020202020207d0a7d20200a0a0a0a0a0a0a0a0a0a0a

Cadence Script

1transaction(name: String, code: String) {
2        prepare(acct: auth(AddContract, UpdateContract) &Account) {
3          if acct.contracts.get(name: name) == nil {
4              acct.contracts.add(name: name, code: code.decodeHex())
5            } else {
6              acct.contracts.update(name: name, code: code.decodeHex())
7            }
8          }
9      }