Skip to content

Commit

Permalink
add usage warning message to adapter contract
Browse files Browse the repository at this point in the history
  • Loading branch information
nmlinaric committed Aug 8, 2024
1 parent da7ca5f commit a126a7b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions contracts/adapters/GmpTransferAdapter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@ import "../../contracts/interfaces/IFeeHandler.sol";
import "../XERC20/interfaces/IXERC20.sol";
import "./interfaces/IGmpTransferAdapter.sol";

/**
.__ __. ______ .___________. __ ______ _______
| \ | | / __ \ | || | / || ____|
| \| | | | | | `---| |----`| | | ,----'| |__
| . ` | | | | | | | | | | | | __|
| |\ | | `--' | | | | | | `----.| |____
|__| \__| \______/ |__| |__| \______||_______|
@user be careful when interacting with this contact as it enables
permissionless token addition and transfers via Sygma brige.
Always double check contract addresses and code you are interacting with
since a malicious actor could deploy a fake contract on a route
that is isn't set up by the Sygma team or a trusted 3rd party.
This can result in loss of all your funds.
*/
contract GmpTransferAdapter is IGmpTransferAdapter, AccessControl {
using ERC165Checker for address;

Expand Down

0 comments on commit a126a7b

Please sign in to comment.