Vladislav

Results 3 issues of Vladislav

You can't swap token to native token in dst chain. So that's why nativeOut will be needed in TransferWithSwap. When you execute directSend logic without bridging you send tokens to...

### No need to explicitly initialize variables with default values If a variable is not set/initialized, it is assumed to have the default value (0 for uint, false for bool,...

**🧐 Motivation** In the [`ERC20`](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol#L223) token contract the validation: ```Solidity require(from != address(0), "ERC20: transfer from the zero address"); ``` is redundant. This `require` may fail only in case, when...