mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	Added WETH-A
This commit is contained in:
		
							parent
							
								
									55cbdf788c
								
							
						
					
					
						commit
						fc6598f2c2
					
				
							
								
								
									
										6
									
								
								contracts/optimism/connectors/weth/events.sol
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								contracts/optimism/connectors/weth/events.sol
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,6 @@
 | 
			
		|||
pragma solidity ^0.7.0;
 | 
			
		||||
 | 
			
		||||
contract Events {
 | 
			
		||||
    event LogDeposit(uint256 tokenAmt, uint256 getId, uint256 setId);
 | 
			
		||||
    event LogWithdraw(uint256 tokenAmt, uint256 getId, uint256 setId);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										7
									
								
								contracts/optimism/connectors/weth/helpers.sol
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								contracts/optimism/connectors/weth/helpers.sol
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,7 @@
 | 
			
		|||
pragma solidity ^0.7.0;
 | 
			
		||||
 | 
			
		||||
import { TokenInterface } from "../../common/interfaces.sol";
 | 
			
		||||
 | 
			
		||||
abstract contract Helpers  {
 | 
			
		||||
    TokenInterface constant internal wethContract = TokenInterface(0x4200000000000000000000000000000000000006);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										65
									
								
								contracts/optimism/connectors/weth/main.sol
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										65
									
								
								contracts/optimism/connectors/weth/main.sol
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,65 @@
 | 
			
		|||
// SPDX-License-Identifier: MIT
 | 
			
		||||
pragma solidity ^0.7.0;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @title WETH.
 | 
			
		||||
 * @dev Wrap and Unwrap WETH.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
import { DSMath } from "../../common/math.sol";
 | 
			
		||||
import { Basic } from "../../common/basic.sol";
 | 
			
		||||
import { Events } from "./events.sol";
 | 
			
		||||
import { Helpers } from "./helpers.sol";
 | 
			
		||||
 | 
			
		||||
abstract contract Resolver is Events, DSMath, Basic, Helpers {
 | 
			
		||||
    /**
 | 
			
		||||
     * @dev Deposit ETH into WETH.
 | 
			
		||||
     * @notice Wrap ETH into WETH
 | 
			
		||||
     * @param amt The amount of ETH to deposit. (For max: `uint256(-1)`)
 | 
			
		||||
     * @param getId ID to retrieve amt.
 | 
			
		||||
     * @param setId ID stores the amount of ETH deposited.
 | 
			
		||||
     */
 | 
			
		||||
    function deposit(
 | 
			
		||||
        uint256 amt,
 | 
			
		||||
        uint256 getId,
 | 
			
		||||
        uint256 setId
 | 
			
		||||
    ) public payable returns (string memory _eventName, bytes memory _eventParam) {
 | 
			
		||||
        uint _amt = getUint(getId, amt);
 | 
			
		||||
 | 
			
		||||
        _amt = _amt == uint(-1) ? address(this).balance : _amt;
 | 
			
		||||
        wethContract.deposit{value: _amt}();
 | 
			
		||||
        
 | 
			
		||||
        setUint(setId, _amt);
 | 
			
		||||
 | 
			
		||||
        _eventName = "LogDeposit(uint256,uint256,uint256)";
 | 
			
		||||
        _eventParam = abi.encode(_amt, getId, setId);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * @dev Withdraw ETH from WETH from Smart  Account
 | 
			
		||||
     * @notice Unwrap ETH from WETH
 | 
			
		||||
     * @param amt The amount of weth to withdraw. (For max: `uint256(-1)`)
 | 
			
		||||
     * @param getId ID to retrieve amt.
 | 
			
		||||
     * @param setId ID stores the amount of ETH withdrawn.
 | 
			
		||||
     */
 | 
			
		||||
    function withdraw(
 | 
			
		||||
        uint amt,
 | 
			
		||||
        uint getId,
 | 
			
		||||
        uint setId
 | 
			
		||||
    ) public payable returns (string memory _eventName, bytes memory _eventParam) {
 | 
			
		||||
        uint _amt = getUint(getId, amt);
 | 
			
		||||
 | 
			
		||||
        _amt = _amt == uint(-1) ? wethContract.balanceOf(address(this)) : _amt;
 | 
			
		||||
        approve(wethContract, wethAddr, _amt);
 | 
			
		||||
        wethContract.withdraw(_amt);
 | 
			
		||||
 | 
			
		||||
        setUint(setId, _amt);
 | 
			
		||||
 | 
			
		||||
        _eventName = "LogWithdraw(uint256,uint256,uint256)";
 | 
			
		||||
        _eventParam = abi.encode(_amt, getId, setId);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
contract ConnectV2WETHOptimism is Resolver {
 | 
			
		||||
    string constant public name = "WETH-v1.0";
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user