forked from balancer/balancer-v2-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BalancerHelpers.sol
106 lines (88 loc) · 4.03 KB
/
BalancerHelpers.sol
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
// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.7.0;
pragma experimental ABIEncoderV2;
import "@balancer-labs/v2-solidity-utils/contracts/math/Math.sol";
import "@balancer-labs/v2-solidity-utils/contracts/math/FixedPoint.sol";
import "@balancer-labs/v2-solidity-utils/contracts/helpers/InputHelpers.sol";
import "@balancer-labs/v2-solidity-utils/contracts/helpers/BalancerErrors.sol";
import "@balancer-labs/v2-solidity-utils/contracts/misc/IWETH.sol";
import "@balancer-labs/v2-vault/contracts/AssetHelpers.sol";
import "@balancer-labs/v2-vault/contracts/interfaces/IVault.sol";
import "@balancer-labs/v2-vault/contracts/balances/BalanceAllocation.sol";
import "@balancer-labs/v2-pool-utils/contracts/BasePool.sol";
/**
* @dev This contract simply builds on top of the Balancer V2 architecture to provide useful helpers to users.
* It connects different functionalities of the protocol components to allow accessing information that would
* have required a more cumbersome setup if we wanted to provide these already built-in.
*/
contract BalancerHelpers is AssetHelpers {
using Math for uint256;
using BalanceAllocation for bytes32;
using BalanceAllocation for bytes32[];
IVault public immutable vault;
constructor(IVault _vault) AssetHelpers(_vault.WETH()) {
vault = _vault;
}
function queryJoin(
bytes32 poolId,
address sender,
address recipient,
IVault.JoinPoolRequest memory request
) external returns (uint256 bptOut, uint256[] memory amountsIn) {
(address pool, ) = vault.getPool(poolId);
(uint256[] memory balances, uint256 lastChangeBlock) = _validateAssetsAndGetBalances(poolId, request.assets);
IProtocolFeesCollector feesCollector = vault.getProtocolFeesCollector();
(bptOut, amountsIn) = BasePool(pool).queryJoin(
poolId,
sender,
recipient,
balances,
lastChangeBlock,
feesCollector.getSwapFeePercentage(),
request.userData
);
}
function queryExit(
bytes32 poolId,
address sender,
address recipient,
IVault.ExitPoolRequest memory request
) external returns (uint256 bptIn, uint256[] memory amountsOut) {
(address pool, ) = vault.getPool(poolId);
(uint256[] memory balances, uint256 lastChangeBlock) = _validateAssetsAndGetBalances(poolId, request.assets);
IProtocolFeesCollector feesCollector = vault.getProtocolFeesCollector();
(bptIn, amountsOut) = BasePool(pool).queryExit(
poolId,
sender,
recipient,
balances,
lastChangeBlock,
feesCollector.getSwapFeePercentage(),
request.userData
);
}
function _validateAssetsAndGetBalances(bytes32 poolId, IAsset[] memory expectedAssets)
internal
view
returns (uint256[] memory balances, uint256 lastChangeBlock)
{
IERC20[] memory actualTokens;
IERC20[] memory expectedTokens = _translateToIERC20(expectedAssets);
(actualTokens, balances, lastChangeBlock) = vault.getPoolTokens(poolId);
InputHelpers.ensureInputLengthMatch(actualTokens.length, expectedTokens.length);
for (uint256 i = 0; i < actualTokens.length; ++i) {
IERC20 token = actualTokens[i];
_require(token == expectedTokens[i], Errors.TOKENS_MISMATCH);
}
}
}