DeploySEALED

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

Transaction ID

Timestamp

Sep 04, 2024, 07:15:18 PM UTC
1y ago

Block Height

85,982,030

Computation

0

Execution Fee

0.00000324 FLOW

Proposerseq:16 key:0

Authorizers

1

Transaction Summary

Deploy

Contract deployment

Contract deployment

Script Arguments

0nameString
ICrossVM
1codeString
import EVM from 0xe467b9dd11fa00df /// Contract interface denoting a cross-VM implementation, exposing methods to query EVM-associated addresses /// access(all) contract interface ICrossVM { /// Retrieves the corresponding EVM contract address, assuming a 1:1 relationship between VM implementations /// access(all) view fun getEVMContractAddress(): EVM.EVMAddress }

Cadence Script

1transaction(name: String, code: String ) {
2		prepare(signer: auth(AddContract) &Account) {
3			signer.contracts.add(name: name, code: code.utf8 )
4		}
5	}