DeploySEALED

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

Transaction ID

Timestamp

Aug 27, 2024, 09:28:24 PM UTC
1y ago

Block Height

85,456,814

Computation

0

Execution Fee

0.00000184 FLOW

Transaction Summary

Deploy

Contract deployment

Contract deployment

Script Arguments

0nameString
IBridgePermissions
1codeString
/// This contract defines a simple interface which can be implemented by any resource to prevent it from being /// onboarded to the Flow-EVM bridge /// /// NOTE: This is suggested only for cases where your asset (NFT/FT) incorporates non-standard logic that would /// break your project if not handles properly /// e.g. assets are reclaimed after a certain period of time, NFTs share IDs, etc. /// access(all) contract interface IBridgePermissions { /// Contract-level method enabling implementing contracts to identify whether they allow bridging for their /// project's assets. Implementers may consider adding a hook which would later enable an update to this value /// should either the project be updated or the bridge be updated to handle the asset's non-standard logic which /// would otherwise prevent them from supporting VM bridging at the outset. /// access(all) view fun allowsBridging(): Bool { return false } }

Cadence Script

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