DeploySEALED
%▒▓╱~?$▓▫■?○▒^▫~╳▒░▒$□##▓@█●●╲░▪░◇■$░■◆◇◇$╲!╲@▫^░◆&□░▫?@░▓#◇■╳○~
Transaction ID
Execution Fee
0.00000324 FLOWTransaction Summary
DeployContract 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 }