-
Notifications
You must be signed in to change notification settings - Fork 0
/
IUniswapV2Router.vy
199 lines (171 loc) Β· 5.02 KB
/
IUniswapV2Router.vy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# @version ^0.3.3
# IUniswapV2Router (01 & 02)
# @author deltartificial (@deltartificial)
# IUniswapV2Router01 :
interface IUniswapV2Router01:
def factory() -> address: view
def WETH() -> address: view
def addLiquidity(
_tokenA: address,
_tokenB: address,
_amountADesired: uint256,
_amountBDesired: uint256,
_amountAMin: uint256,
_amountBMin: uint256,
_to: address,
_deadline: uint256
) -> (uint256, uint256, uint256): nonpayable
def addLiquidityETH(
_token: address,
_amountTokenDesired: uint256,
_amountTokenMin: uint256,
_amountETHMin: uint256,
_to: address,
_deadline: uint256
) -> (uint256, uint256, uint256): payable
def removeLiquidity(
_tokenA: address,
_tokenB: address,
_liquidity: uint256,
_amountAMin: uint256,
_amountBMin: uint256,
_to: address,
_deadline: uint256
) -> (uint256, uint256): nonpayable
def removeLiquidityETH(
_token: address,
_liquidity: uint256,
_amountTokenMin: uint256,
_amountETHMin: uint256,
_to: address,
_deadline: uint256
) -> (uint256, uint256): payable
def removeLiquidityWithPermit(
_tokenA: address,
_tokenB: address,
_liquidity: uint256,
_amountAMin: uint256,
_amountBMin: uint256,
_to: address,
_deadline: uint256,
_approveMax: bool,
_v: uint8,
_r: bytes32,
_s: bytes32
) -> (uint256, uint256): nonpayable
def removeLiquidityETHWithPermit(
_token: address,
_liquidity: uint256,
_amountTokenMin: uint256,
_amountETHMin: uint256,
_to: address,
_deadline: uint256,
_approveMax: bool,
_v: uint8,
_r: bytes32,
_s: bytes32
) -> (uint256, uint256): nonpayable
def swapExactTokensForTokens(
_amountIn: uint256,
_amountOutMin: uint256,
_path: address[3],
_to: address,
_deadline: uint256
) -> uint256[3]: nonpayable
def swapTokensForExactTokens(
_amountOut: uint256,
_amountInMax: uint256,
_path: address[3],
_to: address,
_deadline: uint256
) -> uint256[3]: nonpayable
def swapExactETHForTokens(
_amountOutMin: uint256,
_path: address[3],
_to: address,
_deadline: uint256
) -> uint256[3]: payable
def swapTokensForExactETH(
_amountOut: uint256,
_amountInMax: uint256,
_path: address[3],
_to: address,
_deadline: uint256
) -> uint256[3]: nonpayable
def swapExactTokensForETH(
_amountIn: uint256,
_amountOutMin: uint256,
_path: address[3],
_to: address,
_deadline: uint256
) -> uint256[3]: nonpayable
def swapETHForExactTokens(
_amountOut: uint256,
_path: address[3],
_to: address,
_deadline: uint256
) -> uint256[3]: payable
def quote(
_amountA: uint256,
_reserveA: uint256,
_reserveB: uint256
) -> uint256: pure
def getAmountOut(
_amountIn: uint256,
_reserveIn: uint256,
_reserveOut: uint256
) -> uint256: pure
def getAmountIn(
_amountOut: uint256,
_reserveIn: uint256,
_reserveOut: uint256
) -> uint256: pure
def getAmountsOut(
_amountIn: uint256,
_path: address[2]
) -> uint256[2]: view
def getAmountsIn(
_amountOut: uint256,
_path: address[2]
) -> uint256[2]: view
# IUniswapV2Router02 :
def removeLiquidityETHSupportingFeeOnTransferTokens(
_token: address,
_liquidity: uint256,
_amountTokenMin: uint256,
_amountETHMin: uint256,
_to: address,
_deadline: uint256
) -> uint256: nonpayable
def removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
_token: address,
_liquidity: uint256,
_amountTokenMin: uint256,
_amountETHMin: uint256,
_to: address,
_deadline: uint256,
_approveMax: bool,
_v: uint8,
_r: bytes32,
_s: bytes32
) -> uint256: nonpayable
def swapExactTokensForTokensSupportingFeeOnTransferTokens(
_amountIn: uint256,
_amountOutMin: uint256,
_path: address[3],
_to: address,
_deadline: uint256
): nonpayable
def swapExactETHForTokensSupportingFeeOnTransferTokens(
_amountOutMin: uint256,
_path: address[3],
_to: address,
_deadline: uint256
): payable
def swapExactTokensForETHSupportingFeeOnTransferTokens(
_amountIn: uint256,
_amountOutMin: uint256,
_path: address[3],
_to: address,
_deadline: uint256
): nonpayable