From 19de0f5e89f878f75926f6b0df5954d77b9768b0 Mon Sep 17 00:00:00 2001 From: Giovanni Sanchez <108043524+sisyphusSmiling@users.noreply.github.com> Date: Mon, 15 Apr 2024 19:04:08 -0500 Subject: [PATCH] fix EVM imports --- cadence/contracts/bridge/FlowEVMBridge.cdc | 2 +- cadence/contracts/standards/EVM.cdc | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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 {