diff --git a/cadence/contracts/bridge/FlowEVMBridgeUtils.cdc b/cadence/contracts/bridge/FlowEVMBridgeUtils.cdc index 8f9964e5..a082885f 100644 --- a/cadence/contracts/bridge/FlowEVMBridgeUtils.cdc +++ b/cadence/contracts/bridge/FlowEVMBridgeUtils.cdc @@ -363,7 +363,7 @@ contract FlowEVMBridgeUtils { ) } - /// Retrieves identifying information about an EVM contract address for onboarding to the bridge. + /// Retrieves identifying information about an EVM contract related to bridge onboarding. /// /// @param evmContractAddress: The EVM contract address to retrieve onboarding values for /// @@ -1161,7 +1161,7 @@ contract FlowEVMBridgeUtils { assert(bridgePostBalance == bridgePreBalance + amount, message: "Transfer to bridge escrow failed") } - /// Calls to the bridge factory to deploy an ERC721 contract and returns the deployed contract address + /// Calls to the bridge factory to deploy an ERC721/ERC20 contract and returns the deployed contract address /// access(account) fun mustDeployEVMContract( diff --git a/cadence/contracts/utils/SerializeMetadata.cdc b/cadence/contracts/utils/SerializeMetadata.cdc index 24a6d7a2..4cdba1de 100644 --- a/cadence/contracts/utils/SerializeMetadata.cdc +++ b/cadence/contracts/utils/SerializeMetadata.cdc @@ -163,8 +163,7 @@ access(all) contract SerializeMetadata { } /// Derives a symbol for use as an ERC20 or ERC721 symbol from a given string, presumably a Cadence contract name. - /// Derivation is a process of removing slicing the first 4 characters of the string and converting them to - /// uppercase. + /// Derivation is a process of slicing the first 4 characters of the string and converting them to uppercase. /// /// @param fromString: The string from which to derive a symbol ///