...UniswapExchangeLiks(exchange).sync();
validate the address
```
```js
ERC20like(token).decimals();
```
## can the call be hooked
is there a way for an attacker to gain control of your execution
```
contract Caller{
fallback() external{
call...
}
}
```
```
contract BadTok...