diff --git a/cadence/contracts/bridge/FlowEVMBridge.cdc b/cadence/contracts/bridge/FlowEVMBridge.cdc index b1a572c6..a9e94207 100644 --- a/cadence/contracts/bridge/FlowEVMBridge.cdc +++ b/cadence/contracts/bridge/FlowEVMBridge.cdc @@ -42,7 +42,7 @@ contract FlowEVMBridge : IFlowEVMNFTBridge, IFlowEVMTokenBridge { /// Emitted any time a new asset type is onboarded to the bridge access(all) event Onboarded(type: Type, cadenceContractAddress: Address, evmContractAddress: String) - /// Denotes a defining contract was deployed to the bridge accountcode + /// Denotes a defining contract was deployed to the bridge account access(all) event BridgeDefiningContractDeployed( contractName: String, diff --git a/cadence/contracts/standards/EVM.cdc b/cadence/contracts/standards/EVM.cdc index e6e89677..12ee784d 100644 --- a/cadence/contracts/standards/EVM.cdc +++ b/cadence/contracts/standards/EVM.cdc @@ -1,7 +1,7 @@ import Crypto -import NonFungibleToken from 0x0000000000000001 -import FungibleToken from 0x0000000000000002 -import FlowToken from 0x0000000000000003 +import "NonFungibleToken" +import "FungibleToken" +import "FlowToken" access(all) contract EVM {