Skip to content

Commit

Permalink
fix EVM imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sisyphusSmiling committed Apr 16, 2024
1 parent d12f676 commit 19de0f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cadence/contracts/bridge/FlowEVMBridge.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 3 additions & 3 deletions cadence/contracts/standards/EVM.cdc
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down

0 comments on commit 19de0f5

Please sign in to comment.