-
Notifications
You must be signed in to change notification settings - Fork 333
/
Copy pathprivate_payments.test.ts
392 lines (350 loc) · 13.3 KB
/
private_payments.test.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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
import {
type AccountWallet,
type AztecAddress,
BatchCall,
Fr,
PrivateFeePaymentMethod,
type TxReceipt,
computeSecretHash,
sleep,
} from '@aztec/aztec.js';
import { type GasSettings } from '@aztec/circuits.js';
import { type TokenContract as BananaCoin, FPCContract } from '@aztec/noir-contracts.js';
import { expectMapping } from '../fixtures/utils.js';
import { FeesTest } from './fees_test.js';
describe('e2e_fees private_payment', () => {
let aliceWallet: AccountWallet;
let aliceAddress: AztecAddress;
let bobAddress: AztecAddress;
let sequencerAddress: AztecAddress;
let bananaCoin: BananaCoin;
let bananaFPC: FPCContract;
let gasSettings: GasSettings;
const t = new FeesTest('private_payment');
beforeAll(async () => {
await t.applyBaseSnapshots();
await t.applyFPCSetupSnapshot();
await t.applyFundAliceWithBananas();
({ aliceWallet, aliceAddress, bobAddress, sequencerAddress, bananaCoin, bananaFPC, gasSettings } = await t.setup());
});
afterAll(async () => {
await t.teardown();
});
let InitialSequencerL1Gas: bigint;
let InitialAlicePublicBananas: bigint;
let InitialAlicePrivateBananas: bigint;
let InitialAliceGas: bigint;
// eslint-disable-next-line @typescript-eslint/no-unused-vars
let InitialBobPublicBananas: bigint;
let InitialBobPrivateBananas: bigint;
let InitialFPCPublicBananas: bigint;
let InitialFPCPrivateBananas: bigint;
let InitialFPCGas: bigint;
let InitialSequencerGas: bigint;
let maxFee: bigint;
let refundSecret: Fr;
beforeEach(async () => {
maxFee = BigInt(20e9);
refundSecret = Fr.random();
expect(gasSettings.getFeeLimit().toBigInt()).toEqual(maxFee);
InitialSequencerL1Gas = await t.getCoinbaseBalance();
[
[InitialAlicePrivateBananas, InitialBobPrivateBananas, InitialFPCPrivateBananas],
[InitialAlicePublicBananas, InitialBobPublicBananas, InitialFPCPublicBananas],
[InitialAliceGas, InitialFPCGas, InitialSequencerGas],
] = await Promise.all([
t.getBananaPrivateBalanceFn(aliceAddress, bobAddress, bananaFPC.address),
t.getBananaPublicBalanceFn(aliceAddress, bobAddress, bananaFPC.address),
t.getGasBalanceFn(aliceAddress, bananaFPC.address, sequencerAddress),
]);
// We let Alice see Bob's notes because the expect uses Alice's wallet to interact with the contracts to "get" state.
aliceWallet.setScopes([aliceAddress, bobAddress]);
});
const getFeeAndRefund = (tx: Pick<TxReceipt, 'transactionFee'>) => [tx.transactionFee!, maxFee - tx.transactionFee!];
it('pays fees for tx that dont run public app logic', async () => {
/**
* PRIVATE SETUP (1 nullifier for tx)
* check authwit (1 nullifier)
* reduce alice BC.private by MaxFee (1 nullifier)
* enqueue public call to increase FPC BC.public by MaxFee
* enqueue public call for fpc.pay_fee_with_shielded_rebate
*
* PRIVATE APP LOGIC
* reduce Alice's BC.private by transferAmount (1 note)
* create note for Bob of transferAmount (1 note)
* encrypted logs of 944 bytes
* unencrypted logs of 20 bytes
*
* PUBLIC SETUP
* increase FPC BC.public by MaxFee
*
* PUBLIC APP LOGIC
* N/A
*
* PUBLIC TEARDOWN
* call banana.shield
* decrease FPC BC.public by RefundAmount
* create transparent note with RefundAmount
*
* this is expected to squash notes and nullifiers
*/
const transferAmount = 5n;
const interaction = bananaCoin.methods.transfer(bobAddress, transferAmount);
const localTx = await interaction.prove({
fee: {
gasSettings,
paymentMethod: new PrivateFeePaymentMethod(bananaCoin.address, bananaFPC.address, aliceWallet, refundSecret),
},
});
expect(localTx.data.feePayer).toEqual(bananaFPC.address);
const tx = await interaction.send().wait();
/**
* at present the user is paying DA gas for:
* 3 nullifiers = 3 * DA_BYTES_PER_FIELD * DA_GAS_PER_BYTE = 3 * 32 * 16 = 1536 DA gas
* 2 note hashes = 2 * DA_BYTES_PER_FIELD * DA_GAS_PER_BYTE = 2 * 32 * 16 = 1024 DA gas
* 1160 bytes of logs = 1160 * DA_GAS_PER_BYTE = 1160 * 16 = 5568 DA gas
* tx overhead of 512 DA gas
* for a total of 21632 DA gas (without gas used during public execution)
* public execution uses N gas
* for a total of 200032492n gas
*
* The default teardown gas allocation at present is
* 100_000_000 for both DA and L2 gas.
*
* That produces a grand total of 200032492n.
*
* This will change because we are presently squashing notes/nullifiers across non/revertible during
* private execution, but we shouldn't.
*
* TODO(6583): update this comment properly now that public execution consumes gas
*/
// We wait until the block is proven since that is when the payout happens.
const bn = await t.aztecNode.getBlockNumber();
while ((await t.aztecNode.getProvenBlockNumber()) < bn) {
await sleep(1000);
}
// expect(tx.transactionFee).toEqual(200032492n);
await expect(t.getCoinbaseBalance()).resolves.toEqual(InitialSequencerL1Gas + tx.transactionFee!);
const [feeAmount, refundAmount] = getFeeAndRefund(tx);
await expectMapping(
t.getBananaPrivateBalanceFn,
[aliceAddress, bobAddress, bananaFPC.address, sequencerAddress],
[InitialAlicePrivateBananas - maxFee - transferAmount, transferAmount, InitialFPCPrivateBananas, 0n],
);
await expectMapping(
t.getBananaPublicBalanceFn,
[aliceAddress, bananaFPC.address, sequencerAddress],
[InitialAlicePublicBananas, InitialFPCPublicBananas + maxFee - refundAmount, 0n],
);
await expectMapping(
t.getGasBalanceFn,
[aliceAddress, bananaFPC.address, sequencerAddress],
[InitialAliceGas, InitialFPCGas - feeAmount, InitialSequencerGas],
);
await expect(
// this rejects if note can't be added
t.addPendingShieldNoteToPXE(t.aliceWallet, refundAmount, computeSecretHash(refundSecret), tx.txHash),
).resolves.toBeUndefined();
});
it('pays fees for tx that creates notes in private', async () => {
/**
* PRIVATE SETUP
* check authwit
* reduce alice BC.private by MaxFee
* enqueue public call to increase FPC BC.public by MaxFee
* enqueue public call for fpc.pay_fee_with_shielded_rebate
*
* PRIVATE APP LOGIC
* increase alice BC.private by newlyMintedBananas
*
* PUBLIC SETUP
* increase FPC BC.public by MaxFee
*
* PUBLIC APP LOGIC
* BC increase total supply
*
* PUBLIC TEARDOWN
* call banana.shield
* decrease FPC BC.public by RefundAmount
* create transparent note with RefundAmount
*/
const newlyMintedBananas = 10n;
const tx = await bananaCoin.methods
.privately_mint_private_note(newlyMintedBananas)
.send({
fee: {
gasSettings,
paymentMethod: new PrivateFeePaymentMethod(bananaCoin.address, bananaFPC.address, aliceWallet, refundSecret),
},
})
.wait();
const [feeAmount, refundAmount] = getFeeAndRefund(tx);
await expectMapping(
t.getBananaPrivateBalanceFn,
[aliceAddress, bananaFPC.address, sequencerAddress],
[InitialAlicePrivateBananas - maxFee + newlyMintedBananas, InitialFPCPrivateBananas, 0n],
);
await expectMapping(
t.getBananaPublicBalanceFn,
[aliceAddress, bananaFPC.address, sequencerAddress],
[InitialAlicePublicBananas, InitialFPCPublicBananas + maxFee - refundAmount, 0n],
);
await expectMapping(
t.getGasBalanceFn,
[aliceAddress, bananaFPC.address, sequencerAddress],
[InitialAliceGas, InitialFPCGas - feeAmount, InitialSequencerGas],
);
await expect(
// this rejects if note can't be added
t.addPendingShieldNoteToPXE(t.aliceWallet, refundAmount, computeSecretHash(refundSecret), tx.txHash),
).resolves.toBeUndefined();
});
it('pays fees for tx that creates notes in public', async () => {
/**
* PRIVATE SETUP
* check authwit
* reduce alice BC.private by MaxFee
* enqueue public call to increase FPC BC.public by MaxFee
* enqueue public call for fpc.pay_fee_with_shielded_rebate
*
* PRIVATE APP LOGIC
* N/A
*
* PUBLIC SETUP
* increase FPC BC.public by MaxFee
*
* PUBLIC APP LOGIC
* BC decrease Alice public balance by shieldedBananas
* BC create transparent note of shieldedBananas
*
* PUBLIC TEARDOWN
* call banana.shield
* decrease FPC BC.public by RefundAmount
* create transparent note with RefundAmount
*/
const shieldedBananas = 1n;
const shieldSecret = Fr.random();
const shieldSecretHash = computeSecretHash(shieldSecret);
const tx = await bananaCoin.methods
.shield(aliceAddress, shieldedBananas, shieldSecretHash, 0n)
.send({
fee: {
gasSettings,
paymentMethod: new PrivateFeePaymentMethod(bananaCoin.address, bananaFPC.address, aliceWallet, refundSecret),
},
})
.wait();
const [feeAmount, refundAmount] = getFeeAndRefund(tx);
await expectMapping(
t.getBananaPrivateBalanceFn,
[aliceAddress, bananaFPC.address, sequencerAddress],
[InitialAlicePrivateBananas - maxFee, InitialFPCPrivateBananas, 0n],
);
await expectMapping(
t.getBananaPublicBalanceFn,
[aliceAddress, bananaFPC.address, sequencerAddress],
[InitialAlicePublicBananas - shieldedBananas, InitialFPCPublicBananas + maxFee - refundAmount, 0n],
);
await expectMapping(
t.getGasBalanceFn,
[aliceAddress, bananaFPC.address, sequencerAddress],
[InitialAliceGas, InitialFPCGas - feeAmount, InitialSequencerGas],
);
await expect(
t.addPendingShieldNoteToPXE(t.aliceWallet, shieldedBananas, shieldSecretHash, tx.txHash),
).resolves.toBeUndefined();
await expect(
t.addPendingShieldNoteToPXE(t.aliceWallet, refundAmount, computeSecretHash(refundSecret), tx.txHash),
).resolves.toBeUndefined();
});
it('pays fees for tx that creates notes in both private and public', async () => {
const privateTransfer = 1n;
const shieldedBananas = 1n;
const shieldSecret = Fr.random();
const shieldSecretHash = computeSecretHash(shieldSecret);
/**
* PRIVATE SETUP
* check authwit
* reduce alice BC.private by MaxFee
* enqueue public call to increase FPC BC.public by MaxFee
* enqueue public call for fpc.pay_fee_with_shielded_rebate
*
* PRIVATE APP LOGIC
* reduce Alice's private balance by privateTransfer
* create note for Bob with privateTransfer amount of private BC
*
* PUBLIC SETUP
* increase FPC BC.public by MaxFee
*
* PUBLIC APP LOGIC
* BC decrease Alice public balance by shieldedBananas
* BC create transparent note of shieldedBananas
*
* PUBLIC TEARDOWN
* call banana.shield
* decrease FPC BC.public by RefundAmount
* create transparent note with RefundAmount
*/
const tx = await new BatchCall(aliceWallet, [
bananaCoin.methods.transfer(bobAddress, privateTransfer).request(),
bananaCoin.methods.shield(aliceAddress, shieldedBananas, shieldSecretHash, 0n).request(),
])
.send({
fee: {
gasSettings,
paymentMethod: new PrivateFeePaymentMethod(bananaCoin.address, bananaFPC.address, aliceWallet, refundSecret),
},
})
.wait();
const [feeAmount, refundAmount] = getFeeAndRefund(tx);
await expectMapping(
t.getBananaPrivateBalanceFn,
[aliceAddress, bobAddress, bananaFPC.address, sequencerAddress],
[
InitialAlicePrivateBananas - maxFee - privateTransfer,
InitialBobPrivateBananas + privateTransfer,
InitialFPCPrivateBananas,
0n,
],
);
await expectMapping(
t.getBananaPublicBalanceFn,
[aliceAddress, bananaFPC.address, sequencerAddress],
[InitialAlicePublicBananas - shieldedBananas, InitialFPCPublicBananas + maxFee - refundAmount, 0n],
);
await expectMapping(
t.getGasBalanceFn,
[aliceAddress, bananaFPC.address, sequencerAddress],
[InitialAliceGas, InitialFPCGas - feeAmount, InitialSequencerGas],
);
await expect(
t.addPendingShieldNoteToPXE(t.aliceWallet, shieldedBananas, shieldSecretHash, tx.txHash),
).resolves.toBeUndefined();
await expect(
t.addPendingShieldNoteToPXE(t.aliceWallet, refundAmount, computeSecretHash(refundSecret), tx.txHash),
).resolves.toBeUndefined();
});
it('rejects txs that dont have enough balance to cover gas costs', async () => {
// deploy a copy of bananaFPC but don't fund it!
const bankruptFPC = await FPCContract.deploy(aliceWallet, bananaCoin.address).send().deployed();
await expectMapping(t.getGasBalanceFn, [bankruptFPC.address], [0n]);
await expect(
bananaCoin.methods
.privately_mint_private_note(10)
.send({
// we need to skip public simulation otherwise the PXE refuses to accept the TX
skipPublicSimulation: true,
fee: {
gasSettings,
paymentMethod: new PrivateFeePaymentMethod(
bananaCoin.address,
bankruptFPC.address,
aliceWallet,
refundSecret,
),
},
})
.wait(),
).rejects.toThrow('Tx dropped by P2P node.');
});
});