forked from balancer/balancer-deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
82 lines (73 loc) · 3.66 KB
/
index.ts
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
import { ethers } from 'hardhat';
import { NoProtocolFeeLiquidityBootstrappingPoolDeployment } from './input';
import { Task, TaskMode, TaskRunOptions } from '@src';
import { bn, fp } from '@helpers/numbers';
import * as expectEvent from '@helpers/expectEvent';
import { getContractDeploymentTransactionHash, saveContractDeploymentTransactionHash } from '@src';
import { ZERO_ADDRESS } from '@helpers/constants';
export default async (task: Task, { force, from }: TaskRunOptions = {}): Promise<void> => {
const input = task.input() as NoProtocolFeeLiquidityBootstrappingPoolDeployment;
const args = [input.Vault];
const factory = await task.deployAndVerify('NoProtocolFeeLiquidityBootstrappingPoolFactory', args, from, force);
if (task.mode === TaskMode.LIVE) {
// We also create a Pool using the factory and verify it, to let us compute their action IDs and so that future
// Pools are automatically verified. We however don't run any of this code in CHECK mode, since we don't care about
// the contracts deployed here. The action IDs will be checked to be correct via a different mechanism.
const newPoolParams = {
name: 'DO NOT USE - Mock LiquidityBootstrappingPool Pool',
symbol: 'TEST',
tokens: [input.WETH, input.BAL].sort(function (a, b) {
return a.toLowerCase().localeCompare(b.toLowerCase());
}),
weights: [fp(0.8), fp(0.2)],
swapFeePercentage: bn(1e12),
swapEnabledOnStart: true,
owner: ZERO_ADDRESS,
};
// This mimics the logic inside task.deploy
if (force || !task.output({ ensure: false })['MockLiquidityBootstrappingPool']) {
const poolCreationReceipt = await (
await factory.create(
newPoolParams.name,
newPoolParams.symbol,
newPoolParams.tokens,
newPoolParams.weights,
newPoolParams.swapFeePercentage,
newPoolParams.owner,
newPoolParams.swapEnabledOnStart
)
).wait();
const event = expectEvent.inReceipt(poolCreationReceipt, 'PoolCreated');
const mockPoolAddress = event.args.pool;
await saveContractDeploymentTransactionHash(mockPoolAddress, poolCreationReceipt.transactionHash, task.network);
await task.save({ MockLiquidityBootstrappingPool: mockPoolAddress });
}
const mockPool = await task.instanceAt(
'LiquidityBootstrappingPool',
task.output()['MockLiquidityBootstrappingPool']
);
// In order to verify the Pool's code, we need to complete its constructor arguments by computing the factory
// provided arguments (pause durations).
// The durations require knowing when the Pool was created, so we look for the timestamp of its creation block.
const txHash = await getContractDeploymentTransactionHash(mockPool.address, task.network);
const tx = await ethers.provider.getTransactionReceipt(txHash);
const poolCreationBlock = await ethers.provider.getBlock(tx.blockNumber);
// With those and the period end times, we can compute the durations.
const { pauseWindowEndTime, bufferPeriodEndTime } = await mockPool.getPausedState();
const pauseWindowDuration = pauseWindowEndTime.sub(poolCreationBlock.timestamp);
const bufferPeriodDuration = bufferPeriodEndTime.sub(poolCreationBlock.timestamp).sub(pauseWindowDuration);
// We are now ready to verify the Pool
await task.verify('LiquidityBootstrappingPool', mockPool.address, [
input.Vault,
newPoolParams.name,
newPoolParams.symbol,
newPoolParams.tokens,
newPoolParams.weights,
newPoolParams.swapFeePercentage,
pauseWindowDuration,
bufferPeriodDuration,
newPoolParams.owner,
newPoolParams.swapEnabledOnStart,
]);
}
};