-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaudit_2.spec.ts
298 lines (263 loc) · 8.55 KB
/
audit_2.spec.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
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
import type { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
import { time } from '@openzeppelin/test-helpers';
import { ethers, deployments } from 'hardhat';
import { expect } from 'chai';
import { BigNumber } from 'ethers';
import {
Vault,
Vault__factory,
MockLUSD,
MockLUSD__factory,
} from '../typechain';
import { depositParams, claimParams } from './shared/factories';
import { generateNewAddress } from './shared';
const { parseUnits } = ethers.utils;
const { MaxUint256 } = ethers.constants;
describe('Audit Tests 2', () => {
let owner: SignerWithAddress;
let alice: SignerWithAddress;
let bob: SignerWithAddress;
let charlie: SignerWithAddress;
let underlying: MockLUSD;
let vault: Vault;
const TREASURY = generateNewAddress();
const PERFORMANCE_FEE_PCT = BigNumber.from('00');
const INVESTMENT_FEE_PCT = BigNumber.from('200');
const INVEST_PCT = BigNumber.from('9000');
const fixtures = deployments.createFixture(async ({ deployments }) => {
await deployments.fixture(['vault']);
[owner] = await ethers.getSigners();
const lusdDeployment = await deployments.get('LUSD');
const lusdVaultDeployment = await deployments.get('Vault_LUSD');
underlying = MockLUSD__factory.connect(lusdDeployment.address, owner);
vault = Vault__factory.connect(lusdVaultDeployment.address, owner);
});
beforeEach(() => fixtures());
beforeEach(async () => {
[owner, alice, bob, charlie] = await ethers.getSigners();
let Vault = await ethers.getContractFactory('Vault');
vault = await Vault.deploy(
underlying.address,
1,
INVEST_PCT,
TREASURY,
owner.address,
PERFORMANCE_FEE_PCT,
INVESTMENT_FEE_PCT,
[],
0,
);
underlying.connect(owner).approve(vault.address, MaxUint256);
underlying.connect(alice).approve(vault.address, MaxUint256);
underlying.connect(bob).approve(vault.address, MaxUint256);
underlying.connect(charlie).approve(vault.address, MaxUint256);
});
describe('Vault / PPS manipulation', () => {
it('price per share cannot be manipulated if initial deposit is 1 USD', async () => {
await addUnderlyingBalance(alice, '10000');
await underlying.mint(bob.address, parseUnits('10000'));
await underlying.mint(charlie.address, parseUnits('10000'));
await vault.connect(charlie).deposit(
depositParams.build({
inputToken: underlying.address,
lockDuration: 1,
amount: parseUnits('1'),
claims: [
claimParams.build({
beneficiary: charlie.address,
}),
],
name: 'test',
}),
);
await vault.connect(alice).deposit(
depositParams.build({
inputToken: underlying.address,
lockDuration: 1,
amount: 1,
claims: [
claimParams.build({
beneficiary: alice.address,
}),
],
name: 'test',
}),
);
await underlying.connect(alice).transfer(vault.address, 10n ** 18n - 1n);
await vault.connect(bob).deposit(
depositParams.build({
inputToken: underlying.address,
lockDuration: 1,
amount: 1,
claims: [
claimParams.build({
beneficiary: bob.address,
}),
],
name: 'test',
}),
);
await time.increase(24 * 60 * 60);
await expect(
vault.connect(alice).claimYield(alice.address),
).to.be.revertedWith('VaultNoYieldToClaim');
await vault.connect(alice).withdraw(alice.address, [2]);
await underlying
.connect(bob)
.transfer(vault.address, (10n ** 18n - 1n).toString());
await vault.connect(bob).deposit(
depositParams.build({
inputToken: underlying.address,
lockDuration: 1,
amount: (199n * 10n ** 18n).toString(),
claims: [
claimParams.build({
beneficiary: bob.address,
}),
],
name: 'test',
}),
);
const oldBalance = await underlying.balanceOf(charlie.address);
await vault.connect(charlie).deposit(
depositParams.build({
inputToken: underlying.address,
lockDuration: 1,
amount: (2n * 10n ** 18n - 1n).toString(),
claims: [
claimParams.build({
beneficiary: charlie.address,
}),
],
name: 'test',
}),
);
await vault.connect(charlie).withdraw(charlie.address, [5]);
expect(await underlying.balanceOf(charlie.address)).to.eq(oldBalance);
});
it('price per share can not be manipulated', async () => {
await addUnderlyingBalance(alice, '10000');
await underlying.mint(bob.address, parseUnits('10000'));
await underlying.mint(charlie.address, parseUnits('10000'));
await vault.connect(alice).deposit(
depositParams.build({
inputToken: underlying.address,
lockDuration: 1,
amount: 1,
claims: [
claimParams.build({
beneficiary: alice.address,
}),
],
name: 'test',
}),
);
// pps: 1/1e18; amount: 1; totalShares: 1e18;
console.log(
'after alice deposit 1: total shares',
await vault.totalShares(),
);
console.log(
'after alice deposit 1: amount',
await underlying.balanceOf(vault.address),
);
//transfer 1e18-1wei
await underlying.connect(alice).transfer(vault.address, 10n ** 18n - 1n);
// pps = 1, totalShares = 1e18 wei
console.log(
'transfer 1e18-1, and total shares',
await vault.totalShares(),
);
console.log(
'transfer 1e18-1, and amount',
await underlying.balanceOf(vault.address),
);
await vault.connect(bob).deposit(
depositParams.build({
inputToken: underlying.address,
lockDuration: 1,
amount: 1,
claims: [
claimParams.build({
beneficiary: bob.address,
}),
],
name: 'test',
}),
);
// pps: 1, totalShares: 1e18+1 wei
console.log(
'after bob deposit 1: total shares',
await vault.totalShares(),
);
console.log(
'after bob deposit 1: amount',
await underlying.balanceOf(vault.address),
);
//time pass 1 day
await time.increase(24 * 60 * 60);
// await vault.connect(alice).withdraw(alice.address, [1]);
await vault.connect(alice).claimYield(alice.address);
await vault.connect(alice).withdraw(alice.address, [1]);
// pps: 1, totalShares: 1 wei
console.log('after alice exit: total shares', await vault.totalShares());
console.log(
'after alice exit: amount',
await vault.totalUnderlyingMinusSponsored(),
);
// await vault.connect(alice).withdraw(alice.address, [1]);
await underlying
.connect(bob)
.transfer(vault.address, (10n ** 18n - 1n).toString());
// await vault.connect(bob).withdraw(bob.address, [2]);
// pps: 1e18; totalShares: 1 wei
await vault.connect(bob).deposit(
depositParams.build({
inputToken: underlying.address,
lockDuration: 1,
amount: (199n * 10n ** 18n).toString(),
claims: [
claimParams.build({
beneficiary: bob.address,
}),
],
name: 'test',
}),
);
console.log(
'after bob 2nd deposit: total shares',
await vault.totalShares(),
);
console.log(
'after bob 2nd deposit: total amount',
await vault.totalUnderlyingMinusSponsored(),
);
// bob shares: 100 wei
// victim
const oldBalance = Number(await underlying.balanceOf(charlie.address));
await vault.connect(charlie).deposit(
depositParams.build({
inputToken: underlying.address,
lockDuration: 1,
amount: (2n * 10n ** 18n - 1n).toString(),
claims: [
claimParams.build({
beneficiary: charlie.address,
}),
],
name: 'test',
}),
);
await vault.connect(charlie).withdraw(charlie.address, [4]);
expect(Number(await underlying.balanceOf(charlie.address))).to.equal(
oldBalance,
);
});
});
async function addUnderlyingBalance(
account: SignerWithAddress,
amount: string,
) {
await underlying.mint(account.address, parseUnits(amount));
}
});