Skip to content

Instantly share code, notes, and snippets.

@tienshaoku
Created May 19, 2020 07:03
Show Gist options
  • Save tienshaoku/0d99ea04104f2e47f6b0b25d647a0d31 to your computer and use it in GitHub Desktop.
Save tienshaoku/0d99ea04104f2e47f6b0b25d647a0d31 to your computer and use it in GitHub Desktop.
function swapETHToDai() public payable returns(uint[] memory) {
// static array: address[k] memory array;
// The following is the dynamic array way of initialization
address[] memory _paths = new address[](2);
// Also, push() is for storage array.
_paths[0] = WETHAddress;
_paths[1] = DaiAddress;
return uniswapV2Router01.swapExactETHForTokens{value: msg.value}(0, _paths, msg.sender, now + 120);
}
function swapDaiForETH(uint _DaiAmount) public returns(uint[] memory) {
require(Dai.transferFrom(msg.sender, address(this), _DaiAmount));
address[] memory _paths = new address[](2);
_paths[0] = DaiAddress;
_paths[1] = WETHAddress;
Dai.approve(address(uniswapV2Router01), _DaiAmount);
return uniswapV2Router01.swapExactTokensForETH(_DaiAmount, 0, _paths, msg.sender, now + 120);
}
@alberentsen
Copy link

Hi Shao
I figured the problem out in the meantime.
Thanks again
aleks

@tienshaoku
Copy link
Author

tienshaoku commented Jun 21, 2020 via email

@alberentsen
Copy link

alberentsen commented Jun 24, 2020 via email

@tienshaoku
Copy link
Author

tienshaoku commented Jun 26, 2020 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment