From 569d5092fa861f91e03bb4d95a0a9c9550cd319a Mon Sep 17 00:00:00 2001 From: Giovanni Sanchez <108043524+sisyphusSmiling@users.noreply.github.com> Date: Tue, 21 May 2024 17:13:31 -0500 Subject: [PATCH] update transaction comments --- .../bridge/onboarding/batch_onboard_by_evm_address.cdc | 3 ++- .../transactions/bridge/onboarding/batch_onboard_by_type.cdc | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cadence/transactions/bridge/onboarding/batch_onboard_by_evm_address.cdc b/cadence/transactions/bridge/onboarding/batch_onboard_by_evm_address.cdc index 06bc4c6c..c60f4f99 100644 --- a/cadence/transactions/bridge/onboarding/batch_onboard_by_evm_address.cdc +++ b/cadence/transactions/bridge/onboarding/batch_onboard_by_evm_address.cdc @@ -9,7 +9,8 @@ import "EVMUtils" import "FlowEVMBridge" import "FlowEVMBridgeConfig" -/// This transaction onboards the NFT type to the bridge, configuring the bridge to move NFTs between environments +/// This transaction onboards ERC20/ERC721 assets to the bridge, configuring the bridge to move assets between +/// environments /// NOTE: This must be done before bridging a Cadence-native NFT to EVM /// /// @param addressesAsHex: Array of EVM contract addresses (as hex string without 0x prefix) defining the diff --git a/cadence/transactions/bridge/onboarding/batch_onboard_by_type.cdc b/cadence/transactions/bridge/onboarding/batch_onboard_by_type.cdc index 5d2feaa5..fdd31efa 100644 --- a/cadence/transactions/bridge/onboarding/batch_onboard_by_type.cdc +++ b/cadence/transactions/bridge/onboarding/batch_onboard_by_type.cdc @@ -8,7 +8,8 @@ import "EVM" import "FlowEVMBridge" import "FlowEVMBridgeConfig" -/// This transaction onboards the asset type to the bridge, configuring the bridge to move assets between environments +/// This transaction onboards ERC20/ERC721 assets to the bridge, configuring the bridge to move assets between +/// environments /// NOTE: This must be done before bridging a Cadence-native asset to EVM /// /// @param types: The Cadence types of the bridgeable asset to onboard to the bridge