forked from keep-network/tbtc-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeposit-redemption.test.ts
433 lines (369 loc) · 13.8 KB
/
deposit-redemption.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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
import {
extractBitcoinRawTxVectors,
Hex,
BitcoinTxHash,
BitcoinNetwork,
ElectrumClient,
DepositFunding,
DepositScript,
BitcoinAddressConverter,
WalletTx,
BitcoinHashUtils,
EthereumAddress,
TBTC,
} from "@keep-network/tbtc-v2.ts"
import { BigNumber, constants, Contract } from "ethers"
import chai, { expect } from "chai"
import chaiAsPromised from "chai-as-promised"
import {
setupSystemTestsContext,
createTbtcContractsHandle,
} from "./utils/context"
import { fakeRelayDifficulty, waitTransactionConfirmed } from "./utils/bitcoin"
import type {
RedemptionRequest,
BitcoinUtxo,
DepositReceipt,
} from "@keep-network/tbtc-v2.ts"
import type { SystemTestsContext } from "./utils/context"
chai.use(chaiAsPromised)
/**
* This system test scenario performs a single deposit and redemption.
*
* The scenario consists of the following steps:
* 1. The depositor broadcasts the deposit transaction on BTC chain and reveals
* it to the bridge.
* 2. The wallet broadcasts the sweep transaction of the given deposit on BTC
* chain and submits the sweep proof to the bridge.
* 3. The depositor (redeemer) requests the redemption of its entire bank
* balance.
* 4. The wallet broadcasts the redemption transaction handling the given
* request and submits the redemption proof to the bridge.
*
* Following prerequisites must be fulfilled to make a successful pass:
* - The depositor's BTC balance must allow to perform the deposit
* - tBTC v2 contracts must be deployed on used Ethereum network
* - A fresh live wallet (with no main UTXO yet) must be registered in
* the bridge
*/
describe("System Test - Deposit and redemption", () => {
let systemTestsContext: SystemTestsContext
let bridgeAddress: string
let bank: Contract
let relay: Contract
let depositorSdk: TBTC
let maintainerSdk: TBTC
let walletTx: WalletTx
const depositAmount = BigNumber.from(2000000)
const depositSweepTxFee = BigNumber.from(10000)
const depositTxFee = BigNumber.from(1500)
// Number of retries for Electrum requests.
const ELECTRUM_RETRIES = 5
// Initial backoff step in milliseconds that will be increased exponentially for
// subsequent Electrum retry attempts.
const ELECTRUM_RETRY_BACKOFF_STEP_MS = 10000 // 10sec
let depositReceipt: DepositReceipt
let depositUtxo: BitcoinUtxo
let sweepUtxo: BitcoinUtxo
let depositorBitcoinAddress: string
before(async () => {
systemTestsContext = await setupSystemTestsContext()
const { electrumUrl, maintainer, depositor, deployedContracts } =
systemTestsContext
const relayDeploymentInfo = deployedContracts.LightRelay
relay = new Contract(
relayDeploymentInfo.address,
relayDeploymentInfo.abi,
maintainer
)
const bankDeploymentInfo = deployedContracts.Bank
bank = new Contract(
bankDeploymentInfo.address,
bankDeploymentInfo.abi,
maintainer
)
const electrumClient = ElectrumClient.fromUrl(
electrumUrl,
undefined,
ELECTRUM_RETRIES,
ELECTRUM_RETRY_BACKOFF_STEP_MS
)
bridgeAddress = deployedContracts.Bridge.address
const depositorTbtcContracts = await createTbtcContractsHandle(
deployedContracts,
depositor
)
depositorSdk = await TBTC.initializeCustom(
depositorTbtcContracts,
electrumClient
)
const maintainerTbtcContracts = await createTbtcContractsHandle(
deployedContracts,
maintainer
)
maintainerSdk = await TBTC.initializeCustom(
maintainerTbtcContracts,
electrumClient
)
walletTx = new WalletTx(maintainerTbtcContracts, electrumClient)
depositorBitcoinAddress = BitcoinAddressConverter.publicKeyToAddress(
systemTestsContext.depositorBitcoinKeyPair.publicKey.compressed,
BitcoinNetwork.Testnet
)
depositorSdk.deposits.setDefaultDepositor(
EthereumAddress.from(await depositor.getAddress())
)
})
context("when deposit is made and revealed", () => {
before("make and reveal deposit", async () => {
const deposit = await depositorSdk.deposits.initiateDeposit(
// Use the depositor's address as the recovery address.
depositorBitcoinAddress
)
depositReceipt = deposit.getReceipt()
const depositScript = DepositScript.fromReceipt(depositReceipt)
const depositFunding = DepositFunding.fromScript(depositScript)
console.log(`
Deposit receipt generated:
- depositor: ${depositReceipt.depositor.identifierHex}
- walletPublicKeyHash: ${depositReceipt.walletPublicKeyHash}
- refundPublicKeyHash: ${depositReceipt.refundPublicKeyHash}
- blindingFactor: ${depositReceipt.blindingFactor}
- refundLocktime: ${depositReceipt.refundLocktime}
`)
const depositorUtxos =
await depositorSdk.bitcoinClient.findAllUnspentTransactionOutputs(
depositorBitcoinAddress
)
;({ depositUtxo } = await depositFunding.submitTransaction(
depositAmount,
depositorUtxos,
depositTxFee,
systemTestsContext.depositorBitcoinKeyPair.wif,
depositorSdk.bitcoinClient
))
console.log(`
Deposit made on BTC chain:
- Transaction hash: ${depositUtxo.transactionHash}
- Output index: ${depositUtxo.outputIndex}
`)
// Since the reveal deposit logic does not perform SPV proof, we
// can reveal the deposit transaction immediately without waiting
// for confirmations.
const rawDepositTransaction =
await depositorSdk.bitcoinClient.getRawTransaction(
depositUtxo.transactionHash
)
const depositRawTxVectors = extractBitcoinRawTxVectors(
rawDepositTransaction
)
// Reveal without providing the vault address.
await depositorSdk.tbtcContracts.bridge.revealDeposit(
depositRawTxVectors,
depositUtxo.outputIndex,
depositReceipt
)
console.log(`
Deposit revealed on Ethereum chain
`)
})
it("should broadcast the deposit transaction on the Bitcoin network", async () => {
expect(
(
await maintainerSdk.bitcoinClient.getRawTransaction(
depositUtxo.transactionHash
)
).transactionHex.length
).to.be.greaterThan(0)
})
it("should reveal the deposit to the bridge", async () => {
const { revealedAt } = await maintainerSdk.tbtcContracts.bridge.deposits(
depositUtxo.transactionHash,
depositUtxo.outputIndex
)
expect(revealedAt).to.be.greaterThan(0)
})
context("when deposit is swept and sweep proof submitted", () => {
before("sweep the deposit and submit sweep proof", async () => {
;({ newMainUtxo: sweepUtxo } =
await walletTx.depositSweep.submitTransaction(
depositSweepTxFee,
systemTestsContext.walletBitcoinKeyPair.wif,
[depositUtxo],
[depositReceipt]
))
console.log(`
Deposit swept on Bitcoin chain:
- Transaction hash: ${sweepUtxo.transactionHash}
`)
// Unlike in the deposit transaction case, we must wait for the sweep
// transaction to have an enough number of confirmations. This is
// because the bridge performs the SPV proof of that transaction.
await waitTransactionConfirmed(
maintainerSdk.bitcoinClient,
sweepUtxo.transactionHash
)
await fakeRelayDifficulty(
relay,
maintainerSdk.bitcoinClient,
sweepUtxo.transactionHash
)
// TODO: Consider fetching the current wallet main UTXO and passing it
// here. This will allow running this test scenario multiple
// times for the same wallet.
await maintainerSdk.maintenance.spv.submitDepositSweepProof(
sweepUtxo.transactionHash,
// This is the first sweep of the given wallet so there is no main UTXO.
{
// The function expects an unprefixed hash.
transactionHash: BitcoinTxHash.from(constants.HashZero),
outputIndex: 0,
value: BigNumber.from(0),
}
)
console.log(`
Deposit sweep proved on the bridge
`)
})
it("should broadcast the sweep transaction on the Bitcoin network", async () => {
expect(
(
await maintainerSdk.bitcoinClient.getRawTransaction(
sweepUtxo.transactionHash
)
).transactionHex.length
).to.be.greaterThan(0)
})
it("should sweep the deposit on the bridge", async () => {
const { sweptAt } = await maintainerSdk.tbtcContracts.bridge.deposits(
depositUtxo.transactionHash,
depositUtxo.outputIndex
)
expect(sweptAt).to.be.greaterThan(0)
})
it("should increase depositor's balance in the bank", async () => {
const { treasuryFee } =
await maintainerSdk.tbtcContracts.bridge.deposits(
depositUtxo.transactionHash,
depositUtxo.outputIndex
)
const expectedBalance = depositAmount
.sub(treasuryFee)
.sub(depositSweepTxFee)
const actualBalance = await bank.balanceOf(
systemTestsContext.depositor.address
)
expect(actualBalance).to.be.equal(expectedBalance)
})
context("when redemption is requested", () => {
let requestedAmount: BigNumber
let redeemerOutputScript: Hex
let redemptionRequest: RedemptionRequest
before("request the redemption", async () => {
// Redeem the full depositor's balance.
requestedAmount = await bank.balanceOf(
systemTestsContext.depositor.address
)
// Allow the bridge to take the redeemed bank balance.
await bank
.connect(systemTestsContext.depositor)
.approveBalance(bridgeAddress, requestedAmount)
// Request redemption to depositor's address.
redeemerOutputScript = Hex.from(
`0014${BitcoinHashUtils.computeHash160(
systemTestsContext.depositorBitcoinKeyPair.publicKey.compressed
)}`
)
await depositorSdk.tbtcContracts.bridge.requestRedemption(
systemTestsContext.walletBitcoinKeyPair.publicKey.compressed,
sweepUtxo,
redeemerOutputScript,
requestedAmount
)
console.log(
`Requested redemption of ${requestedAmount} satoshis to script ${redeemerOutputScript} on the bridge`
)
redemptionRequest =
await maintainerSdk.redemptions.getRedemptionRequests(
depositorBitcoinAddress,
systemTestsContext.walletBitcoinKeyPair.publicKey.compressed,
"pending"
)
})
it("should transfer depositor's bank balance to the Bridge", async () => {
expect(
await bank.balanceOf(systemTestsContext.depositor.address)
).to.be.equal(0)
expect(await bank.balanceOf(bridgeAddress)).to.be.equal(
requestedAmount
)
})
it("should register the redemption request on the bridge", async () => {
expect(redemptionRequest.requestedAt).to.be.greaterThan(0)
expect(redemptionRequest.requestedAmount).to.be.equal(requestedAmount)
expect(redemptionRequest.redeemerOutputScript).to.be.deep.equal(
redeemerOutputScript
)
})
context(
"when redemption is made and redemption proof submitted",
() => {
let redemptionTxHash: BitcoinTxHash
before(
"make the redemption and submit redemption proof",
async () => {
;({ transactionHash: redemptionTxHash } =
await walletTx.redemption.submitTransaction(
systemTestsContext.walletBitcoinKeyPair.wif,
sweepUtxo,
[redemptionRequest.redeemerOutputScript]
))
console.log(
"Redemption made on Bitcoin chain:\n" +
`- Transaction hash: ${redemptionTxHash}`
)
await waitTransactionConfirmed(
maintainerSdk.bitcoinClient,
redemptionTxHash
)
await fakeRelayDifficulty(
relay,
maintainerSdk.bitcoinClient,
redemptionTxHash
)
await maintainerSdk.maintenance.spv.submitRedemptionProof(
redemptionTxHash,
sweepUtxo,
systemTestsContext.walletBitcoinKeyPair.publicKey.compressed
)
console.log("Redemption proved on the bridge")
}
)
it("should broadcast the redemption transaction on the Bitcoin network", async () => {
expect(
(
await maintainerSdk.bitcoinClient.getRawTransaction(
redemptionTxHash
)
).transactionHex.length
).to.be.greaterThan(0)
})
it("should close the redemption request on the bridge", async () => {
await expect(
maintainerSdk.redemptions.getRedemptionRequests(
depositorBitcoinAddress,
systemTestsContext.walletBitcoinKeyPair.publicKey.compressed,
"pending"
)
).to.be.rejectedWith("Redemption request does not exist")
})
it("should decrease Bridge's balance in the bank", async () => {
const actualBalance = await bank.balanceOf(bridgeAddress)
expect(actualBalance).to.be.equal(0)
})
}
)
})
})
})
})