@keep-network/tbtc-v2 0.1.1-dev.9 → 0.1.1-dev.92

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. package/README.adoc +12 -0
  2. package/artifacts/Bank.json +807 -0
  3. package/artifacts/Bridge.json +2300 -0
  4. package/artifacts/Deposit.json +117 -0
  5. package/artifacts/DepositSweep.json +77 -0
  6. package/artifacts/EcdsaDkgValidator.json +532 -0
  7. package/artifacts/EcdsaInactivity.json +156 -0
  8. package/artifacts/EcdsaSortitionPool.json +1004 -0
  9. package/artifacts/Fraud.json +164 -0
  10. package/artifacts/KeepRegistry.json +99 -0
  11. package/artifacts/KeepStake.json +286 -0
  12. package/artifacts/KeepToken.json +711 -0
  13. package/artifacts/KeepTokenStaking.json +483 -0
  14. package/artifacts/MovingFunds.json +249 -0
  15. package/artifacts/NuCypherStakingEscrow.json +256 -0
  16. package/artifacts/NuCypherToken.json +711 -0
  17. package/artifacts/RandomBeaconStub.json +141 -0
  18. package/artifacts/Redemption.json +174 -0
  19. package/artifacts/ReimbursementPool.json +509 -0
  20. package/artifacts/Relay.json +123 -0
  21. package/artifacts/T.json +1148 -0
  22. package/artifacts/TBTC.json +27 -26
  23. package/artifacts/TBTCToken.json +27 -26
  24. package/artifacts/TBTCVault.json +691 -0
  25. package/artifacts/TokenStaking.json +2288 -0
  26. package/artifacts/TokenholderGovernor.json +1795 -0
  27. package/artifacts/TokenholderTimelock.json +1058 -0
  28. package/artifacts/VendingMachine.json +31 -30
  29. package/artifacts/VendingMachineKeep.json +400 -0
  30. package/artifacts/VendingMachineNuCypher.json +400 -0
  31. package/artifacts/WalletRegistry.json +1843 -0
  32. package/artifacts/WalletRegistryGovernance.json +2754 -0
  33. package/artifacts/Wallets.json +186 -0
  34. package/artifacts/solcInputs/2522ad78efeee521d6cb3252a08f9f62.json +314 -0
  35. package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
  36. package/build/contracts/GovernanceUtils.sol/GovernanceUtils.json +2 -2
  37. package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
  38. package/build/contracts/bank/Bank.sol/Bank.json +27 -4
  39. package/build/contracts/bank/IReceiveBalanceApproval.sol/IReceiveBalanceApproval.dbg.json +4 -0
  40. package/build/contracts/bank/IReceiveBalanceApproval.sol/IReceiveBalanceApproval.json +34 -0
  41. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +1 -1
  42. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.json +2 -2
  43. package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
  44. package/build/contracts/bridge/Bridge.sol/Bridge.json +2547 -196
  45. package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +4 -0
  46. package/build/contracts/bridge/BridgeState.sol/BridgeState.json +226 -0
  47. package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +4 -0
  48. package/build/contracts/bridge/Deposit.sol/Deposit.json +72 -0
  49. package/build/contracts/bridge/DepositSweep.sol/DepositSweep.dbg.json +4 -0
  50. package/build/contracts/bridge/DepositSweep.sol/DepositSweep.json +30 -0
  51. package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +4 -0
  52. package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.json +10 -0
  53. package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +4 -0
  54. package/build/contracts/bridge/Fraud.sol/Fraud.json +86 -0
  55. package/build/contracts/bridge/Heartbeat.sol/Heartbeat.dbg.json +4 -0
  56. package/build/contracts/bridge/Heartbeat.sol/Heartbeat.json +10 -0
  57. package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +4 -0
  58. package/build/contracts/bridge/IRelay.sol/IRelay.json +37 -0
  59. package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +4 -0
  60. package/build/contracts/bridge/MovingFunds.sol/MovingFunds.json +138 -0
  61. package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +4 -0
  62. package/build/contracts/bridge/Redemption.sol/OutboundTx.json +10 -0
  63. package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +4 -0
  64. package/build/contracts/bridge/Redemption.sol/Redemption.json +92 -0
  65. package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
  66. package/build/contracts/bridge/VendingMachine.sol/VendingMachine.json +2 -2
  67. package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +4 -0
  68. package/build/contracts/bridge/Wallets.sol/Wallets.json +112 -0
  69. package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
  70. package/build/contracts/token/TBTC.sol/TBTC.json +2 -2
  71. package/build/contracts/vault/DonationVault.sol/DonationVault.dbg.json +4 -0
  72. package/build/contracts/vault/DonationVault.sol/DonationVault.json +108 -0
  73. package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
  74. package/build/contracts/vault/IVault.sol/IVault.json +24 -1
  75. package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
  76. package/build/contracts/vault/TBTCVault.sol/TBTCVault.json +295 -9
  77. package/contracts/GovernanceUtils.sol +4 -4
  78. package/contracts/bank/Bank.sol +119 -57
  79. package/contracts/bank/IReceiveBalanceApproval.sol +45 -0
  80. package/contracts/bridge/BitcoinTx.sol +232 -10
  81. package/contracts/bridge/Bridge.sol +1692 -244
  82. package/contracts/bridge/BridgeState.sol +739 -0
  83. package/contracts/bridge/Deposit.sol +269 -0
  84. package/contracts/bridge/DepositSweep.sol +571 -0
  85. package/contracts/bridge/EcdsaLib.sol +45 -0
  86. package/contracts/bridge/Fraud.sol +604 -0
  87. package/contracts/bridge/Heartbeat.sol +112 -0
  88. package/contracts/bridge/IRelay.sol +28 -0
  89. package/contracts/bridge/MovingFunds.sol +1089 -0
  90. package/contracts/bridge/Redemption.sol +1021 -0
  91. package/contracts/bridge/VendingMachine.sol +2 -2
  92. package/contracts/bridge/Wallets.sol +553 -0
  93. package/contracts/hardhat-dependency-compiler/.hardhat-dependency-compiler +1 -0
  94. package/contracts/hardhat-dependency-compiler/@keep-network/ecdsa/contracts/WalletRegistry.sol +3 -0
  95. package/contracts/hardhat-dependency-compiler/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol +3 -0
  96. package/contracts/hardhat-dependency-compiler/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol +3 -0
  97. package/contracts/token/TBTC.sol +1 -1
  98. package/contracts/vault/DonationVault.sol +125 -0
  99. package/contracts/vault/IVault.sol +19 -13
  100. package/contracts/vault/TBTCVault.sol +200 -23
  101. package/deploy/00_resolve_relay.ts +28 -0
  102. package/deploy/{03_transfer_roles.ts → 03_transfer_vending_machine_roles.ts} +1 -1
  103. package/deploy/04_deploy_bank.ts +27 -0
  104. package/deploy/05_deploy_bridge.ts +80 -0
  105. package/deploy/06_deploy_tbtc_vault.ts +30 -0
  106. package/deploy/07_bank_update_bridge.ts +19 -0
  107. package/deploy/08_transfer_bank_ownership.ts +15 -0
  108. package/deploy/09_transfer_tbtc_vault_ownership.ts +15 -0
  109. package/deploy/10_transfer_bridge_governance.ts +20 -0
  110. package/deploy/11_initialize_wallet_owner.ts +18 -0
  111. package/deploy/11_transfer_proxy_admin_ownership.ts +30 -0
  112. package/deploy/12_deploy_proxy_admin_with_deputy.ts +33 -0
  113. package/export.json +15771 -443
  114. package/package.json +34 -26
  115. package/artifacts/solcInputs/58d5b3ee7688835879381470de985d6b.json +0 -128
@@ -0,0 +1,2300 @@
1
+ {
2
+ "address": "0xD499f5F7d3C918D0e553BA03954c4E02af16B6e4",
3
+ "abi": [
4
+ {
5
+ "type": "event",
6
+ "anonymous": false,
7
+ "name": "DepositParametersUpdated",
8
+ "inputs": [
9
+ {
10
+ "type": "uint64",
11
+ "name": "depositDustThreshold",
12
+ "indexed": false
13
+ },
14
+ {
15
+ "type": "uint64",
16
+ "name": "depositTreasuryFeeDivisor",
17
+ "indexed": false
18
+ },
19
+ {
20
+ "type": "uint64",
21
+ "name": "depositTxMaxFee",
22
+ "indexed": false
23
+ }
24
+ ]
25
+ },
26
+ {
27
+ "type": "event",
28
+ "anonymous": false,
29
+ "name": "DepositRevealed",
30
+ "inputs": [
31
+ {
32
+ "type": "bytes32",
33
+ "name": "fundingTxHash",
34
+ "indexed": false
35
+ },
36
+ {
37
+ "type": "uint32",
38
+ "name": "fundingOutputIndex",
39
+ "indexed": false
40
+ },
41
+ {
42
+ "type": "address",
43
+ "name": "depositor",
44
+ "indexed": true
45
+ },
46
+ {
47
+ "type": "uint64",
48
+ "name": "amount",
49
+ "indexed": false
50
+ },
51
+ {
52
+ "type": "bytes8",
53
+ "name": "blindingFactor",
54
+ "indexed": false
55
+ },
56
+ {
57
+ "type": "bytes20",
58
+ "name": "walletPubKeyHash",
59
+ "indexed": true
60
+ },
61
+ {
62
+ "type": "bytes20",
63
+ "name": "refundPubKeyHash",
64
+ "indexed": false
65
+ },
66
+ {
67
+ "type": "bytes4",
68
+ "name": "refundLocktime",
69
+ "indexed": false
70
+ },
71
+ {
72
+ "type": "address",
73
+ "name": "vault",
74
+ "indexed": false
75
+ }
76
+ ]
77
+ },
78
+ {
79
+ "type": "event",
80
+ "anonymous": false,
81
+ "name": "DepositsSwept",
82
+ "inputs": [
83
+ {
84
+ "type": "bytes20",
85
+ "name": "walletPubKeyHash",
86
+ "indexed": false
87
+ },
88
+ {
89
+ "type": "bytes32",
90
+ "name": "sweepTxHash",
91
+ "indexed": false
92
+ }
93
+ ]
94
+ },
95
+ {
96
+ "type": "event",
97
+ "anonymous": false,
98
+ "name": "FraudChallengeDefeatTimedOut",
99
+ "inputs": [
100
+ {
101
+ "type": "bytes20",
102
+ "name": "walletPubKeyHash",
103
+ "indexed": true
104
+ },
105
+ {
106
+ "type": "bytes32",
107
+ "name": "sighash",
108
+ "indexed": false
109
+ }
110
+ ]
111
+ },
112
+ {
113
+ "type": "event",
114
+ "anonymous": false,
115
+ "name": "FraudChallengeDefeated",
116
+ "inputs": [
117
+ {
118
+ "type": "bytes20",
119
+ "name": "walletPubKeyHash",
120
+ "indexed": true
121
+ },
122
+ {
123
+ "type": "bytes32",
124
+ "name": "sighash",
125
+ "indexed": false
126
+ }
127
+ ]
128
+ },
129
+ {
130
+ "type": "event",
131
+ "anonymous": false,
132
+ "name": "FraudChallengeSubmitted",
133
+ "inputs": [
134
+ {
135
+ "type": "bytes20",
136
+ "name": "walletPubKeyHash",
137
+ "indexed": true
138
+ },
139
+ {
140
+ "type": "bytes32",
141
+ "name": "sighash",
142
+ "indexed": false
143
+ },
144
+ {
145
+ "type": "uint8",
146
+ "name": "v",
147
+ "indexed": false
148
+ },
149
+ {
150
+ "type": "bytes32",
151
+ "name": "r",
152
+ "indexed": false
153
+ },
154
+ {
155
+ "type": "bytes32",
156
+ "name": "s",
157
+ "indexed": false
158
+ }
159
+ ]
160
+ },
161
+ {
162
+ "type": "event",
163
+ "anonymous": false,
164
+ "name": "FraudParametersUpdated",
165
+ "inputs": [
166
+ {
167
+ "type": "uint256",
168
+ "name": "fraudChallengeDepositAmount",
169
+ "indexed": false
170
+ },
171
+ {
172
+ "type": "uint256",
173
+ "name": "fraudChallengeDefeatTimeout",
174
+ "indexed": false
175
+ },
176
+ {
177
+ "type": "uint96",
178
+ "name": "fraudSlashingAmount",
179
+ "indexed": false
180
+ },
181
+ {
182
+ "type": "uint256",
183
+ "name": "fraudNotifierRewardMultiplier",
184
+ "indexed": false
185
+ }
186
+ ]
187
+ },
188
+ {
189
+ "type": "event",
190
+ "anonymous": false,
191
+ "name": "GovernanceTransferred",
192
+ "inputs": [
193
+ {
194
+ "type": "address",
195
+ "name": "oldGovernance",
196
+ "indexed": false
197
+ },
198
+ {
199
+ "type": "address",
200
+ "name": "newGovernance",
201
+ "indexed": false
202
+ }
203
+ ]
204
+ },
205
+ {
206
+ "type": "event",
207
+ "anonymous": false,
208
+ "name": "Initialized",
209
+ "inputs": [
210
+ {
211
+ "type": "uint8",
212
+ "name": "version",
213
+ "indexed": false
214
+ }
215
+ ]
216
+ },
217
+ {
218
+ "type": "event",
219
+ "anonymous": false,
220
+ "name": "MovedFundsSweepTimedOut",
221
+ "inputs": [
222
+ {
223
+ "type": "bytes20",
224
+ "name": "walletPubKeyHash",
225
+ "indexed": true
226
+ },
227
+ {
228
+ "type": "bytes32",
229
+ "name": "movingFundsTxHash",
230
+ "indexed": false
231
+ },
232
+ {
233
+ "type": "uint32",
234
+ "name": "movingFundsTxOutputIndex",
235
+ "indexed": false
236
+ }
237
+ ]
238
+ },
239
+ {
240
+ "type": "event",
241
+ "anonymous": false,
242
+ "name": "MovedFundsSwept",
243
+ "inputs": [
244
+ {
245
+ "type": "bytes20",
246
+ "name": "walletPubKeyHash",
247
+ "indexed": true
248
+ },
249
+ {
250
+ "type": "bytes32",
251
+ "name": "sweepTxHash",
252
+ "indexed": false
253
+ }
254
+ ]
255
+ },
256
+ {
257
+ "type": "event",
258
+ "anonymous": false,
259
+ "name": "MovingFundsBelowDustReported",
260
+ "inputs": [
261
+ {
262
+ "type": "bytes20",
263
+ "name": "walletPubKeyHash",
264
+ "indexed": true
265
+ }
266
+ ]
267
+ },
268
+ {
269
+ "type": "event",
270
+ "anonymous": false,
271
+ "name": "MovingFundsCommitmentSubmitted",
272
+ "inputs": [
273
+ {
274
+ "type": "bytes20",
275
+ "name": "walletPubKeyHash",
276
+ "indexed": true
277
+ },
278
+ {
279
+ "type": "bytes20[]",
280
+ "name": "targetWallets",
281
+ "indexed": false
282
+ },
283
+ {
284
+ "type": "address",
285
+ "name": "submitter",
286
+ "indexed": false
287
+ }
288
+ ]
289
+ },
290
+ {
291
+ "type": "event",
292
+ "anonymous": false,
293
+ "name": "MovingFundsCompleted",
294
+ "inputs": [
295
+ {
296
+ "type": "bytes20",
297
+ "name": "walletPubKeyHash",
298
+ "indexed": true
299
+ },
300
+ {
301
+ "type": "bytes32",
302
+ "name": "movingFundsTxHash",
303
+ "indexed": false
304
+ }
305
+ ]
306
+ },
307
+ {
308
+ "type": "event",
309
+ "anonymous": false,
310
+ "name": "MovingFundsParametersUpdated",
311
+ "inputs": [
312
+ {
313
+ "type": "uint64",
314
+ "name": "movingFundsTxMaxTotalFee",
315
+ "indexed": false
316
+ },
317
+ {
318
+ "type": "uint64",
319
+ "name": "movingFundsDustThreshold",
320
+ "indexed": false
321
+ },
322
+ {
323
+ "type": "uint32",
324
+ "name": "movingFundsTimeoutResetDelay",
325
+ "indexed": false
326
+ },
327
+ {
328
+ "type": "uint32",
329
+ "name": "movingFundsTimeout",
330
+ "indexed": false
331
+ },
332
+ {
333
+ "type": "uint96",
334
+ "name": "movingFundsTimeoutSlashingAmount",
335
+ "indexed": false
336
+ },
337
+ {
338
+ "type": "uint256",
339
+ "name": "movingFundsTimeoutNotifierRewardMultiplier",
340
+ "indexed": false
341
+ },
342
+ {
343
+ "type": "uint64",
344
+ "name": "movedFundsSweepTxMaxTotalFee",
345
+ "indexed": false
346
+ },
347
+ {
348
+ "type": "uint32",
349
+ "name": "movedFundsSweepTimeout",
350
+ "indexed": false
351
+ },
352
+ {
353
+ "type": "uint96",
354
+ "name": "movedFundsSweepTimeoutSlashingAmount",
355
+ "indexed": false
356
+ },
357
+ {
358
+ "type": "uint256",
359
+ "name": "movedFundsSweepTimeoutNotifierRewardMultiplier",
360
+ "indexed": false
361
+ }
362
+ ]
363
+ },
364
+ {
365
+ "type": "event",
366
+ "anonymous": false,
367
+ "name": "MovingFundsTimedOut",
368
+ "inputs": [
369
+ {
370
+ "type": "bytes20",
371
+ "name": "walletPubKeyHash",
372
+ "indexed": true
373
+ }
374
+ ]
375
+ },
376
+ {
377
+ "type": "event",
378
+ "anonymous": false,
379
+ "name": "MovingFundsTimeoutReset",
380
+ "inputs": [
381
+ {
382
+ "type": "bytes20",
383
+ "name": "walletPubKeyHash",
384
+ "indexed": true
385
+ }
386
+ ]
387
+ },
388
+ {
389
+ "type": "event",
390
+ "anonymous": false,
391
+ "name": "NewWalletRegistered",
392
+ "inputs": [
393
+ {
394
+ "type": "bytes32",
395
+ "name": "ecdsaWalletID",
396
+ "indexed": true
397
+ },
398
+ {
399
+ "type": "bytes20",
400
+ "name": "walletPubKeyHash",
401
+ "indexed": true
402
+ }
403
+ ]
404
+ },
405
+ {
406
+ "type": "event",
407
+ "anonymous": false,
408
+ "name": "NewWalletRequested",
409
+ "inputs": []
410
+ },
411
+ {
412
+ "type": "event",
413
+ "anonymous": false,
414
+ "name": "RedemptionParametersUpdated",
415
+ "inputs": [
416
+ {
417
+ "type": "uint64",
418
+ "name": "redemptionDustThreshold",
419
+ "indexed": false
420
+ },
421
+ {
422
+ "type": "uint64",
423
+ "name": "redemptionTreasuryFeeDivisor",
424
+ "indexed": false
425
+ },
426
+ {
427
+ "type": "uint64",
428
+ "name": "redemptionTxMaxFee",
429
+ "indexed": false
430
+ },
431
+ {
432
+ "type": "uint256",
433
+ "name": "redemptionTimeout",
434
+ "indexed": false
435
+ },
436
+ {
437
+ "type": "uint96",
438
+ "name": "redemptionTimeoutSlashingAmount",
439
+ "indexed": false
440
+ },
441
+ {
442
+ "type": "uint256",
443
+ "name": "redemptionTimeoutNotifierRewardMultiplier",
444
+ "indexed": false
445
+ }
446
+ ]
447
+ },
448
+ {
449
+ "type": "event",
450
+ "anonymous": false,
451
+ "name": "RedemptionRequested",
452
+ "inputs": [
453
+ {
454
+ "type": "bytes20",
455
+ "name": "walletPubKeyHash",
456
+ "indexed": true
457
+ },
458
+ {
459
+ "type": "bytes",
460
+ "name": "redeemerOutputScript",
461
+ "indexed": false
462
+ },
463
+ {
464
+ "type": "address",
465
+ "name": "redeemer",
466
+ "indexed": true
467
+ },
468
+ {
469
+ "type": "uint64",
470
+ "name": "requestedAmount",
471
+ "indexed": false
472
+ },
473
+ {
474
+ "type": "uint64",
475
+ "name": "treasuryFee",
476
+ "indexed": false
477
+ },
478
+ {
479
+ "type": "uint64",
480
+ "name": "txMaxFee",
481
+ "indexed": false
482
+ }
483
+ ]
484
+ },
485
+ {
486
+ "type": "event",
487
+ "anonymous": false,
488
+ "name": "RedemptionTimedOut",
489
+ "inputs": [
490
+ {
491
+ "type": "bytes20",
492
+ "name": "walletPubKeyHash",
493
+ "indexed": true
494
+ },
495
+ {
496
+ "type": "bytes",
497
+ "name": "redeemerOutputScript",
498
+ "indexed": false
499
+ }
500
+ ]
501
+ },
502
+ {
503
+ "type": "event",
504
+ "anonymous": false,
505
+ "name": "RedemptionsCompleted",
506
+ "inputs": [
507
+ {
508
+ "type": "bytes20",
509
+ "name": "walletPubKeyHash",
510
+ "indexed": true
511
+ },
512
+ {
513
+ "type": "bytes32",
514
+ "name": "redemptionTxHash",
515
+ "indexed": false
516
+ }
517
+ ]
518
+ },
519
+ {
520
+ "type": "event",
521
+ "anonymous": false,
522
+ "name": "VaultStatusUpdated",
523
+ "inputs": [
524
+ {
525
+ "type": "address",
526
+ "name": "vault",
527
+ "indexed": true
528
+ },
529
+ {
530
+ "type": "bool",
531
+ "name": "isTrusted",
532
+ "indexed": false
533
+ }
534
+ ]
535
+ },
536
+ {
537
+ "type": "event",
538
+ "anonymous": false,
539
+ "name": "WalletClosed",
540
+ "inputs": [
541
+ {
542
+ "type": "bytes32",
543
+ "name": "ecdsaWalletID",
544
+ "indexed": true
545
+ },
546
+ {
547
+ "type": "bytes20",
548
+ "name": "walletPubKeyHash",
549
+ "indexed": true
550
+ }
551
+ ]
552
+ },
553
+ {
554
+ "type": "event",
555
+ "anonymous": false,
556
+ "name": "WalletClosing",
557
+ "inputs": [
558
+ {
559
+ "type": "bytes32",
560
+ "name": "ecdsaWalletID",
561
+ "indexed": true
562
+ },
563
+ {
564
+ "type": "bytes20",
565
+ "name": "walletPubKeyHash",
566
+ "indexed": true
567
+ }
568
+ ]
569
+ },
570
+ {
571
+ "type": "event",
572
+ "anonymous": false,
573
+ "name": "WalletMovingFunds",
574
+ "inputs": [
575
+ {
576
+ "type": "bytes32",
577
+ "name": "ecdsaWalletID",
578
+ "indexed": true
579
+ },
580
+ {
581
+ "type": "bytes20",
582
+ "name": "walletPubKeyHash",
583
+ "indexed": true
584
+ }
585
+ ]
586
+ },
587
+ {
588
+ "type": "event",
589
+ "anonymous": false,
590
+ "name": "WalletParametersUpdated",
591
+ "inputs": [
592
+ {
593
+ "type": "uint32",
594
+ "name": "walletCreationPeriod",
595
+ "indexed": false
596
+ },
597
+ {
598
+ "type": "uint64",
599
+ "name": "walletCreationMinBtcBalance",
600
+ "indexed": false
601
+ },
602
+ {
603
+ "type": "uint64",
604
+ "name": "walletCreationMaxBtcBalance",
605
+ "indexed": false
606
+ },
607
+ {
608
+ "type": "uint64",
609
+ "name": "walletClosureMinBtcBalance",
610
+ "indexed": false
611
+ },
612
+ {
613
+ "type": "uint32",
614
+ "name": "walletMaxAge",
615
+ "indexed": false
616
+ },
617
+ {
618
+ "type": "uint64",
619
+ "name": "walletMaxBtcTransfer",
620
+ "indexed": false
621
+ },
622
+ {
623
+ "type": "uint32",
624
+ "name": "walletClosingPeriod",
625
+ "indexed": false
626
+ }
627
+ ]
628
+ },
629
+ {
630
+ "type": "event",
631
+ "anonymous": false,
632
+ "name": "WalletTerminated",
633
+ "inputs": [
634
+ {
635
+ "type": "bytes32",
636
+ "name": "ecdsaWalletID",
637
+ "indexed": true
638
+ },
639
+ {
640
+ "type": "bytes20",
641
+ "name": "walletPubKeyHash",
642
+ "indexed": true
643
+ }
644
+ ]
645
+ },
646
+ {
647
+ "type": "function",
648
+ "name": "__ecdsaWalletCreatedCallback",
649
+ "constant": false,
650
+ "payable": false,
651
+ "gas": 29000000,
652
+ "inputs": [
653
+ {
654
+ "type": "bytes32",
655
+ "name": "ecdsaWalletID"
656
+ },
657
+ {
658
+ "type": "bytes32",
659
+ "name": "publicKeyX"
660
+ },
661
+ {
662
+ "type": "bytes32",
663
+ "name": "publicKeyY"
664
+ }
665
+ ],
666
+ "outputs": []
667
+ },
668
+ {
669
+ "type": "function",
670
+ "name": "__ecdsaWalletHeartbeatFailedCallback",
671
+ "constant": false,
672
+ "payable": false,
673
+ "gas": 29000000,
674
+ "inputs": [
675
+ {
676
+ "type": "bytes32"
677
+ },
678
+ {
679
+ "type": "bytes32",
680
+ "name": "publicKeyX"
681
+ },
682
+ {
683
+ "type": "bytes32",
684
+ "name": "publicKeyY"
685
+ }
686
+ ],
687
+ "outputs": []
688
+ },
689
+ {
690
+ "type": "function",
691
+ "name": "activeWalletPubKeyHash",
692
+ "constant": true,
693
+ "stateMutability": "view",
694
+ "payable": false,
695
+ "gas": 29000000,
696
+ "inputs": [],
697
+ "outputs": [
698
+ {
699
+ "type": "bytes20"
700
+ }
701
+ ]
702
+ },
703
+ {
704
+ "type": "function",
705
+ "name": "contractReferences",
706
+ "constant": true,
707
+ "stateMutability": "view",
708
+ "payable": false,
709
+ "gas": 29000000,
710
+ "inputs": [],
711
+ "outputs": [
712
+ {
713
+ "type": "address",
714
+ "name": "bank"
715
+ },
716
+ {
717
+ "type": "address",
718
+ "name": "relay"
719
+ },
720
+ {
721
+ "type": "address",
722
+ "name": "ecdsaWalletRegistry"
723
+ }
724
+ ]
725
+ },
726
+ {
727
+ "type": "function",
728
+ "name": "defeatFraudChallenge",
729
+ "constant": false,
730
+ "payable": false,
731
+ "gas": 29000000,
732
+ "inputs": [
733
+ {
734
+ "type": "bytes",
735
+ "name": "walletPublicKey"
736
+ },
737
+ {
738
+ "type": "bytes",
739
+ "name": "preimage"
740
+ },
741
+ {
742
+ "type": "bool",
743
+ "name": "witness"
744
+ }
745
+ ],
746
+ "outputs": []
747
+ },
748
+ {
749
+ "type": "function",
750
+ "name": "defeatFraudChallengeWithHeartbeat",
751
+ "constant": false,
752
+ "payable": false,
753
+ "gas": 29000000,
754
+ "inputs": [
755
+ {
756
+ "type": "bytes",
757
+ "name": "walletPublicKey"
758
+ },
759
+ {
760
+ "type": "bytes",
761
+ "name": "heartbeatMessage"
762
+ }
763
+ ],
764
+ "outputs": []
765
+ },
766
+ {
767
+ "type": "function",
768
+ "name": "depositParameters",
769
+ "constant": true,
770
+ "stateMutability": "view",
771
+ "payable": false,
772
+ "gas": 29000000,
773
+ "inputs": [],
774
+ "outputs": [
775
+ {
776
+ "type": "uint64",
777
+ "name": "depositDustThreshold"
778
+ },
779
+ {
780
+ "type": "uint64",
781
+ "name": "depositTreasuryFeeDivisor"
782
+ },
783
+ {
784
+ "type": "uint64",
785
+ "name": "depositTxMaxFee"
786
+ }
787
+ ]
788
+ },
789
+ {
790
+ "type": "function",
791
+ "name": "deposits",
792
+ "constant": true,
793
+ "stateMutability": "view",
794
+ "payable": false,
795
+ "gas": 29000000,
796
+ "inputs": [
797
+ {
798
+ "type": "uint256",
799
+ "name": "depositKey"
800
+ }
801
+ ],
802
+ "outputs": [
803
+ {
804
+ "type": "tuple",
805
+ "components": [
806
+ {
807
+ "type": "address",
808
+ "name": "depositor"
809
+ },
810
+ {
811
+ "type": "uint64",
812
+ "name": "amount"
813
+ },
814
+ {
815
+ "type": "uint32",
816
+ "name": "revealedAt"
817
+ },
818
+ {
819
+ "type": "address",
820
+ "name": "vault"
821
+ },
822
+ {
823
+ "type": "uint64",
824
+ "name": "treasuryFee"
825
+ },
826
+ {
827
+ "type": "uint32",
828
+ "name": "sweptAt"
829
+ }
830
+ ]
831
+ }
832
+ ]
833
+ },
834
+ {
835
+ "type": "function",
836
+ "name": "fraudChallenges",
837
+ "constant": true,
838
+ "stateMutability": "view",
839
+ "payable": false,
840
+ "gas": 29000000,
841
+ "inputs": [
842
+ {
843
+ "type": "uint256",
844
+ "name": "challengeKey"
845
+ }
846
+ ],
847
+ "outputs": [
848
+ {
849
+ "type": "tuple",
850
+ "components": [
851
+ {
852
+ "type": "address",
853
+ "name": "challenger"
854
+ },
855
+ {
856
+ "type": "uint256",
857
+ "name": "depositAmount"
858
+ },
859
+ {
860
+ "type": "uint32",
861
+ "name": "reportedAt"
862
+ },
863
+ {
864
+ "type": "bool",
865
+ "name": "resolved"
866
+ }
867
+ ]
868
+ }
869
+ ]
870
+ },
871
+ {
872
+ "type": "function",
873
+ "name": "fraudParameters",
874
+ "constant": true,
875
+ "stateMutability": "view",
876
+ "payable": false,
877
+ "gas": 29000000,
878
+ "inputs": [],
879
+ "outputs": [
880
+ {
881
+ "type": "uint256",
882
+ "name": "fraudChallengeDepositAmount"
883
+ },
884
+ {
885
+ "type": "uint256",
886
+ "name": "fraudChallengeDefeatTimeout"
887
+ },
888
+ {
889
+ "type": "uint96",
890
+ "name": "fraudSlashingAmount"
891
+ },
892
+ {
893
+ "type": "uint256",
894
+ "name": "fraudNotifierRewardMultiplier"
895
+ }
896
+ ]
897
+ },
898
+ {
899
+ "type": "function",
900
+ "name": "governance",
901
+ "constant": true,
902
+ "stateMutability": "view",
903
+ "payable": false,
904
+ "gas": 29000000,
905
+ "inputs": [],
906
+ "outputs": [
907
+ {
908
+ "type": "address"
909
+ }
910
+ ]
911
+ },
912
+ {
913
+ "type": "function",
914
+ "name": "initialize",
915
+ "constant": false,
916
+ "payable": false,
917
+ "gas": 29000000,
918
+ "inputs": [
919
+ {
920
+ "type": "address",
921
+ "name": "_bank"
922
+ },
923
+ {
924
+ "type": "address",
925
+ "name": "_relay"
926
+ },
927
+ {
928
+ "type": "address",
929
+ "name": "_treasury"
930
+ },
931
+ {
932
+ "type": "address",
933
+ "name": "_ecdsaWalletRegistry"
934
+ },
935
+ {
936
+ "type": "uint256",
937
+ "name": "_txProofDifficultyFactor"
938
+ }
939
+ ],
940
+ "outputs": []
941
+ },
942
+ {
943
+ "type": "function",
944
+ "name": "isVaultTrusted",
945
+ "constant": true,
946
+ "stateMutability": "view",
947
+ "payable": false,
948
+ "gas": 29000000,
949
+ "inputs": [
950
+ {
951
+ "type": "address",
952
+ "name": "vault"
953
+ }
954
+ ],
955
+ "outputs": [
956
+ {
957
+ "type": "bool"
958
+ }
959
+ ]
960
+ },
961
+ {
962
+ "type": "function",
963
+ "name": "liveWalletsCount",
964
+ "constant": true,
965
+ "stateMutability": "view",
966
+ "payable": false,
967
+ "gas": 29000000,
968
+ "inputs": [],
969
+ "outputs": [
970
+ {
971
+ "type": "uint32"
972
+ }
973
+ ]
974
+ },
975
+ {
976
+ "type": "function",
977
+ "name": "movedFundsSweepRequests",
978
+ "constant": true,
979
+ "stateMutability": "view",
980
+ "payable": false,
981
+ "gas": 29000000,
982
+ "inputs": [
983
+ {
984
+ "type": "uint256",
985
+ "name": "requestKey"
986
+ }
987
+ ],
988
+ "outputs": [
989
+ {
990
+ "type": "tuple",
991
+ "components": [
992
+ {
993
+ "type": "bytes20",
994
+ "name": "walletPubKeyHash"
995
+ },
996
+ {
997
+ "type": "uint64",
998
+ "name": "value"
999
+ },
1000
+ {
1001
+ "type": "uint32",
1002
+ "name": "createdAt"
1003
+ },
1004
+ {
1005
+ "type": "uint8",
1006
+ "name": "state"
1007
+ }
1008
+ ]
1009
+ }
1010
+ ]
1011
+ },
1012
+ {
1013
+ "type": "function",
1014
+ "name": "movingFundsParameters",
1015
+ "constant": true,
1016
+ "stateMutability": "view",
1017
+ "payable": false,
1018
+ "gas": 29000000,
1019
+ "inputs": [],
1020
+ "outputs": [
1021
+ {
1022
+ "type": "uint64",
1023
+ "name": "movingFundsTxMaxTotalFee"
1024
+ },
1025
+ {
1026
+ "type": "uint64",
1027
+ "name": "movingFundsDustThreshold"
1028
+ },
1029
+ {
1030
+ "type": "uint32",
1031
+ "name": "movingFundsTimeoutResetDelay"
1032
+ },
1033
+ {
1034
+ "type": "uint32",
1035
+ "name": "movingFundsTimeout"
1036
+ },
1037
+ {
1038
+ "type": "uint96",
1039
+ "name": "movingFundsTimeoutSlashingAmount"
1040
+ },
1041
+ {
1042
+ "type": "uint256",
1043
+ "name": "movingFundsTimeoutNotifierRewardMultiplier"
1044
+ },
1045
+ {
1046
+ "type": "uint64",
1047
+ "name": "movedFundsSweepTxMaxTotalFee"
1048
+ },
1049
+ {
1050
+ "type": "uint32",
1051
+ "name": "movedFundsSweepTimeout"
1052
+ },
1053
+ {
1054
+ "type": "uint96",
1055
+ "name": "movedFundsSweepTimeoutSlashingAmount"
1056
+ },
1057
+ {
1058
+ "type": "uint256",
1059
+ "name": "movedFundsSweepTimeoutNotifierRewardMultiplier"
1060
+ }
1061
+ ]
1062
+ },
1063
+ {
1064
+ "type": "function",
1065
+ "name": "notifyCloseableWallet",
1066
+ "constant": false,
1067
+ "payable": false,
1068
+ "gas": 29000000,
1069
+ "inputs": [
1070
+ {
1071
+ "type": "bytes20",
1072
+ "name": "walletPubKeyHash"
1073
+ },
1074
+ {
1075
+ "type": "tuple",
1076
+ "name": "walletMainUtxo",
1077
+ "components": [
1078
+ {
1079
+ "type": "bytes32",
1080
+ "name": "txHash"
1081
+ },
1082
+ {
1083
+ "type": "uint32",
1084
+ "name": "txOutputIndex"
1085
+ },
1086
+ {
1087
+ "type": "uint64",
1088
+ "name": "txOutputValue"
1089
+ }
1090
+ ]
1091
+ }
1092
+ ],
1093
+ "outputs": []
1094
+ },
1095
+ {
1096
+ "type": "function",
1097
+ "name": "notifyFraudChallengeDefeatTimeout",
1098
+ "constant": false,
1099
+ "payable": false,
1100
+ "gas": 29000000,
1101
+ "inputs": [
1102
+ {
1103
+ "type": "bytes",
1104
+ "name": "walletPublicKey"
1105
+ },
1106
+ {
1107
+ "type": "uint32[]",
1108
+ "name": "walletMembersIDs"
1109
+ },
1110
+ {
1111
+ "type": "bytes",
1112
+ "name": "preimageSha256"
1113
+ }
1114
+ ],
1115
+ "outputs": []
1116
+ },
1117
+ {
1118
+ "type": "function",
1119
+ "name": "notifyMovedFundsSweepTimeout",
1120
+ "constant": false,
1121
+ "payable": false,
1122
+ "gas": 29000000,
1123
+ "inputs": [
1124
+ {
1125
+ "type": "bytes32",
1126
+ "name": "movingFundsTxHash"
1127
+ },
1128
+ {
1129
+ "type": "uint32",
1130
+ "name": "movingFundsTxOutputIndex"
1131
+ },
1132
+ {
1133
+ "type": "uint32[]",
1134
+ "name": "walletMembersIDs"
1135
+ }
1136
+ ],
1137
+ "outputs": []
1138
+ },
1139
+ {
1140
+ "type": "function",
1141
+ "name": "notifyMovingFundsBelowDust",
1142
+ "constant": false,
1143
+ "payable": false,
1144
+ "gas": 29000000,
1145
+ "inputs": [
1146
+ {
1147
+ "type": "bytes20",
1148
+ "name": "walletPubKeyHash"
1149
+ },
1150
+ {
1151
+ "type": "tuple",
1152
+ "name": "mainUtxo",
1153
+ "components": [
1154
+ {
1155
+ "type": "bytes32",
1156
+ "name": "txHash"
1157
+ },
1158
+ {
1159
+ "type": "uint32",
1160
+ "name": "txOutputIndex"
1161
+ },
1162
+ {
1163
+ "type": "uint64",
1164
+ "name": "txOutputValue"
1165
+ }
1166
+ ]
1167
+ }
1168
+ ],
1169
+ "outputs": []
1170
+ },
1171
+ {
1172
+ "type": "function",
1173
+ "name": "notifyMovingFundsTimeout",
1174
+ "constant": false,
1175
+ "payable": false,
1176
+ "gas": 29000000,
1177
+ "inputs": [
1178
+ {
1179
+ "type": "bytes20",
1180
+ "name": "walletPubKeyHash"
1181
+ },
1182
+ {
1183
+ "type": "uint32[]",
1184
+ "name": "walletMembersIDs"
1185
+ }
1186
+ ],
1187
+ "outputs": []
1188
+ },
1189
+ {
1190
+ "type": "function",
1191
+ "name": "notifyRedemptionTimeout",
1192
+ "constant": false,
1193
+ "payable": false,
1194
+ "gas": 29000000,
1195
+ "inputs": [
1196
+ {
1197
+ "type": "bytes20",
1198
+ "name": "walletPubKeyHash"
1199
+ },
1200
+ {
1201
+ "type": "uint32[]",
1202
+ "name": "walletMembersIDs"
1203
+ },
1204
+ {
1205
+ "type": "bytes",
1206
+ "name": "redeemerOutputScript"
1207
+ }
1208
+ ],
1209
+ "outputs": []
1210
+ },
1211
+ {
1212
+ "type": "function",
1213
+ "name": "notifyWalletClosingPeriodElapsed",
1214
+ "constant": false,
1215
+ "payable": false,
1216
+ "gas": 29000000,
1217
+ "inputs": [
1218
+ {
1219
+ "type": "bytes20",
1220
+ "name": "walletPubKeyHash"
1221
+ }
1222
+ ],
1223
+ "outputs": []
1224
+ },
1225
+ {
1226
+ "type": "function",
1227
+ "name": "pendingRedemptions",
1228
+ "constant": true,
1229
+ "stateMutability": "view",
1230
+ "payable": false,
1231
+ "gas": 29000000,
1232
+ "inputs": [
1233
+ {
1234
+ "type": "uint256",
1235
+ "name": "redemptionKey"
1236
+ }
1237
+ ],
1238
+ "outputs": [
1239
+ {
1240
+ "type": "tuple",
1241
+ "components": [
1242
+ {
1243
+ "type": "address",
1244
+ "name": "redeemer"
1245
+ },
1246
+ {
1247
+ "type": "uint64",
1248
+ "name": "requestedAmount"
1249
+ },
1250
+ {
1251
+ "type": "uint64",
1252
+ "name": "treasuryFee"
1253
+ },
1254
+ {
1255
+ "type": "uint64",
1256
+ "name": "txMaxFee"
1257
+ },
1258
+ {
1259
+ "type": "uint32",
1260
+ "name": "requestedAt"
1261
+ }
1262
+ ]
1263
+ }
1264
+ ]
1265
+ },
1266
+ {
1267
+ "type": "function",
1268
+ "name": "receiveBalanceApproval",
1269
+ "constant": false,
1270
+ "payable": false,
1271
+ "gas": 29000000,
1272
+ "inputs": [
1273
+ {
1274
+ "type": "address",
1275
+ "name": "balanceOwner"
1276
+ },
1277
+ {
1278
+ "type": "uint256",
1279
+ "name": "amount"
1280
+ },
1281
+ {
1282
+ "type": "bytes",
1283
+ "name": "redemptionData"
1284
+ }
1285
+ ],
1286
+ "outputs": []
1287
+ },
1288
+ {
1289
+ "type": "function",
1290
+ "name": "redemptionParameters",
1291
+ "constant": true,
1292
+ "stateMutability": "view",
1293
+ "payable": false,
1294
+ "gas": 29000000,
1295
+ "inputs": [],
1296
+ "outputs": [
1297
+ {
1298
+ "type": "uint64",
1299
+ "name": "redemptionDustThreshold"
1300
+ },
1301
+ {
1302
+ "type": "uint64",
1303
+ "name": "redemptionTreasuryFeeDivisor"
1304
+ },
1305
+ {
1306
+ "type": "uint64",
1307
+ "name": "redemptionTxMaxFee"
1308
+ },
1309
+ {
1310
+ "type": "uint256",
1311
+ "name": "redemptionTimeout"
1312
+ },
1313
+ {
1314
+ "type": "uint96",
1315
+ "name": "redemptionTimeoutSlashingAmount"
1316
+ },
1317
+ {
1318
+ "type": "uint256",
1319
+ "name": "redemptionTimeoutNotifierRewardMultiplier"
1320
+ }
1321
+ ]
1322
+ },
1323
+ {
1324
+ "type": "function",
1325
+ "name": "requestNewWallet",
1326
+ "constant": false,
1327
+ "payable": false,
1328
+ "gas": 29000000,
1329
+ "inputs": [
1330
+ {
1331
+ "type": "tuple",
1332
+ "name": "activeWalletMainUtxo",
1333
+ "components": [
1334
+ {
1335
+ "type": "bytes32",
1336
+ "name": "txHash"
1337
+ },
1338
+ {
1339
+ "type": "uint32",
1340
+ "name": "txOutputIndex"
1341
+ },
1342
+ {
1343
+ "type": "uint64",
1344
+ "name": "txOutputValue"
1345
+ }
1346
+ ]
1347
+ }
1348
+ ],
1349
+ "outputs": []
1350
+ },
1351
+ {
1352
+ "type": "function",
1353
+ "name": "requestRedemption",
1354
+ "constant": false,
1355
+ "payable": false,
1356
+ "gas": 29000000,
1357
+ "inputs": [
1358
+ {
1359
+ "type": "bytes20",
1360
+ "name": "walletPubKeyHash"
1361
+ },
1362
+ {
1363
+ "type": "tuple",
1364
+ "name": "mainUtxo",
1365
+ "components": [
1366
+ {
1367
+ "type": "bytes32",
1368
+ "name": "txHash"
1369
+ },
1370
+ {
1371
+ "type": "uint32",
1372
+ "name": "txOutputIndex"
1373
+ },
1374
+ {
1375
+ "type": "uint64",
1376
+ "name": "txOutputValue"
1377
+ }
1378
+ ]
1379
+ },
1380
+ {
1381
+ "type": "bytes",
1382
+ "name": "redeemerOutputScript"
1383
+ },
1384
+ {
1385
+ "type": "uint64",
1386
+ "name": "amount"
1387
+ }
1388
+ ],
1389
+ "outputs": []
1390
+ },
1391
+ {
1392
+ "type": "function",
1393
+ "name": "resetMovingFundsTimeout",
1394
+ "constant": false,
1395
+ "payable": false,
1396
+ "gas": 29000000,
1397
+ "inputs": [
1398
+ {
1399
+ "type": "bytes20",
1400
+ "name": "walletPubKeyHash"
1401
+ }
1402
+ ],
1403
+ "outputs": []
1404
+ },
1405
+ {
1406
+ "type": "function",
1407
+ "name": "revealDeposit",
1408
+ "constant": false,
1409
+ "payable": false,
1410
+ "gas": 29000000,
1411
+ "inputs": [
1412
+ {
1413
+ "type": "tuple",
1414
+ "name": "fundingTx",
1415
+ "components": [
1416
+ {
1417
+ "type": "bytes4",
1418
+ "name": "version"
1419
+ },
1420
+ {
1421
+ "type": "bytes",
1422
+ "name": "inputVector"
1423
+ },
1424
+ {
1425
+ "type": "bytes",
1426
+ "name": "outputVector"
1427
+ },
1428
+ {
1429
+ "type": "bytes4",
1430
+ "name": "locktime"
1431
+ }
1432
+ ]
1433
+ },
1434
+ {
1435
+ "type": "tuple",
1436
+ "name": "reveal",
1437
+ "components": [
1438
+ {
1439
+ "type": "uint32",
1440
+ "name": "fundingOutputIndex"
1441
+ },
1442
+ {
1443
+ "type": "address",
1444
+ "name": "depositor"
1445
+ },
1446
+ {
1447
+ "type": "bytes8",
1448
+ "name": "blindingFactor"
1449
+ },
1450
+ {
1451
+ "type": "bytes20",
1452
+ "name": "walletPubKeyHash"
1453
+ },
1454
+ {
1455
+ "type": "bytes20",
1456
+ "name": "refundPubKeyHash"
1457
+ },
1458
+ {
1459
+ "type": "bytes4",
1460
+ "name": "refundLocktime"
1461
+ },
1462
+ {
1463
+ "type": "address",
1464
+ "name": "vault"
1465
+ }
1466
+ ]
1467
+ }
1468
+ ],
1469
+ "outputs": []
1470
+ },
1471
+ {
1472
+ "type": "function",
1473
+ "name": "setVaultStatus",
1474
+ "constant": false,
1475
+ "payable": false,
1476
+ "gas": 29000000,
1477
+ "inputs": [
1478
+ {
1479
+ "type": "address",
1480
+ "name": "vault"
1481
+ },
1482
+ {
1483
+ "type": "bool",
1484
+ "name": "isTrusted"
1485
+ }
1486
+ ],
1487
+ "outputs": []
1488
+ },
1489
+ {
1490
+ "type": "function",
1491
+ "name": "spentMainUTXOs",
1492
+ "constant": true,
1493
+ "stateMutability": "view",
1494
+ "payable": false,
1495
+ "gas": 29000000,
1496
+ "inputs": [
1497
+ {
1498
+ "type": "uint256",
1499
+ "name": "utxoKey"
1500
+ }
1501
+ ],
1502
+ "outputs": [
1503
+ {
1504
+ "type": "bool"
1505
+ }
1506
+ ]
1507
+ },
1508
+ {
1509
+ "type": "function",
1510
+ "name": "submitDepositSweepProof",
1511
+ "constant": false,
1512
+ "payable": false,
1513
+ "gas": 29000000,
1514
+ "inputs": [
1515
+ {
1516
+ "type": "tuple",
1517
+ "name": "sweepTx",
1518
+ "components": [
1519
+ {
1520
+ "type": "bytes4",
1521
+ "name": "version"
1522
+ },
1523
+ {
1524
+ "type": "bytes",
1525
+ "name": "inputVector"
1526
+ },
1527
+ {
1528
+ "type": "bytes",
1529
+ "name": "outputVector"
1530
+ },
1531
+ {
1532
+ "type": "bytes4",
1533
+ "name": "locktime"
1534
+ }
1535
+ ]
1536
+ },
1537
+ {
1538
+ "type": "tuple",
1539
+ "name": "sweepProof",
1540
+ "components": [
1541
+ {
1542
+ "type": "bytes",
1543
+ "name": "merkleProof"
1544
+ },
1545
+ {
1546
+ "type": "uint256",
1547
+ "name": "txIndexInBlock"
1548
+ },
1549
+ {
1550
+ "type": "bytes",
1551
+ "name": "bitcoinHeaders"
1552
+ }
1553
+ ]
1554
+ },
1555
+ {
1556
+ "type": "tuple",
1557
+ "name": "mainUtxo",
1558
+ "components": [
1559
+ {
1560
+ "type": "bytes32",
1561
+ "name": "txHash"
1562
+ },
1563
+ {
1564
+ "type": "uint32",
1565
+ "name": "txOutputIndex"
1566
+ },
1567
+ {
1568
+ "type": "uint64",
1569
+ "name": "txOutputValue"
1570
+ }
1571
+ ]
1572
+ },
1573
+ {
1574
+ "type": "address",
1575
+ "name": "vault"
1576
+ }
1577
+ ],
1578
+ "outputs": []
1579
+ },
1580
+ {
1581
+ "type": "function",
1582
+ "name": "submitFraudChallenge",
1583
+ "constant": false,
1584
+ "stateMutability": "payable",
1585
+ "payable": true,
1586
+ "gas": 29000000,
1587
+ "inputs": [
1588
+ {
1589
+ "type": "bytes",
1590
+ "name": "walletPublicKey"
1591
+ },
1592
+ {
1593
+ "type": "bytes",
1594
+ "name": "preimageSha256"
1595
+ },
1596
+ {
1597
+ "type": "tuple",
1598
+ "name": "signature",
1599
+ "components": [
1600
+ {
1601
+ "type": "bytes32",
1602
+ "name": "r"
1603
+ },
1604
+ {
1605
+ "type": "bytes32",
1606
+ "name": "s"
1607
+ },
1608
+ {
1609
+ "type": "uint8",
1610
+ "name": "v"
1611
+ }
1612
+ ]
1613
+ }
1614
+ ],
1615
+ "outputs": []
1616
+ },
1617
+ {
1618
+ "type": "function",
1619
+ "name": "submitMovedFundsSweepProof",
1620
+ "constant": false,
1621
+ "payable": false,
1622
+ "gas": 29000000,
1623
+ "inputs": [
1624
+ {
1625
+ "type": "tuple",
1626
+ "name": "sweepTx",
1627
+ "components": [
1628
+ {
1629
+ "type": "bytes4",
1630
+ "name": "version"
1631
+ },
1632
+ {
1633
+ "type": "bytes",
1634
+ "name": "inputVector"
1635
+ },
1636
+ {
1637
+ "type": "bytes",
1638
+ "name": "outputVector"
1639
+ },
1640
+ {
1641
+ "type": "bytes4",
1642
+ "name": "locktime"
1643
+ }
1644
+ ]
1645
+ },
1646
+ {
1647
+ "type": "tuple",
1648
+ "name": "sweepProof",
1649
+ "components": [
1650
+ {
1651
+ "type": "bytes",
1652
+ "name": "merkleProof"
1653
+ },
1654
+ {
1655
+ "type": "uint256",
1656
+ "name": "txIndexInBlock"
1657
+ },
1658
+ {
1659
+ "type": "bytes",
1660
+ "name": "bitcoinHeaders"
1661
+ }
1662
+ ]
1663
+ },
1664
+ {
1665
+ "type": "tuple",
1666
+ "name": "mainUtxo",
1667
+ "components": [
1668
+ {
1669
+ "type": "bytes32",
1670
+ "name": "txHash"
1671
+ },
1672
+ {
1673
+ "type": "uint32",
1674
+ "name": "txOutputIndex"
1675
+ },
1676
+ {
1677
+ "type": "uint64",
1678
+ "name": "txOutputValue"
1679
+ }
1680
+ ]
1681
+ }
1682
+ ],
1683
+ "outputs": []
1684
+ },
1685
+ {
1686
+ "type": "function",
1687
+ "name": "submitMovingFundsCommitment",
1688
+ "constant": false,
1689
+ "payable": false,
1690
+ "gas": 29000000,
1691
+ "inputs": [
1692
+ {
1693
+ "type": "bytes20",
1694
+ "name": "walletPubKeyHash"
1695
+ },
1696
+ {
1697
+ "type": "tuple",
1698
+ "name": "walletMainUtxo",
1699
+ "components": [
1700
+ {
1701
+ "type": "bytes32",
1702
+ "name": "txHash"
1703
+ },
1704
+ {
1705
+ "type": "uint32",
1706
+ "name": "txOutputIndex"
1707
+ },
1708
+ {
1709
+ "type": "uint64",
1710
+ "name": "txOutputValue"
1711
+ }
1712
+ ]
1713
+ },
1714
+ {
1715
+ "type": "uint32[]",
1716
+ "name": "walletMembersIDs"
1717
+ },
1718
+ {
1719
+ "type": "uint256",
1720
+ "name": "walletMemberIndex"
1721
+ },
1722
+ {
1723
+ "type": "bytes20[]",
1724
+ "name": "targetWallets"
1725
+ }
1726
+ ],
1727
+ "outputs": []
1728
+ },
1729
+ {
1730
+ "type": "function",
1731
+ "name": "submitMovingFundsProof",
1732
+ "constant": false,
1733
+ "payable": false,
1734
+ "gas": 29000000,
1735
+ "inputs": [
1736
+ {
1737
+ "type": "tuple",
1738
+ "name": "movingFundsTx",
1739
+ "components": [
1740
+ {
1741
+ "type": "bytes4",
1742
+ "name": "version"
1743
+ },
1744
+ {
1745
+ "type": "bytes",
1746
+ "name": "inputVector"
1747
+ },
1748
+ {
1749
+ "type": "bytes",
1750
+ "name": "outputVector"
1751
+ },
1752
+ {
1753
+ "type": "bytes4",
1754
+ "name": "locktime"
1755
+ }
1756
+ ]
1757
+ },
1758
+ {
1759
+ "type": "tuple",
1760
+ "name": "movingFundsProof",
1761
+ "components": [
1762
+ {
1763
+ "type": "bytes",
1764
+ "name": "merkleProof"
1765
+ },
1766
+ {
1767
+ "type": "uint256",
1768
+ "name": "txIndexInBlock"
1769
+ },
1770
+ {
1771
+ "type": "bytes",
1772
+ "name": "bitcoinHeaders"
1773
+ }
1774
+ ]
1775
+ },
1776
+ {
1777
+ "type": "tuple",
1778
+ "name": "mainUtxo",
1779
+ "components": [
1780
+ {
1781
+ "type": "bytes32",
1782
+ "name": "txHash"
1783
+ },
1784
+ {
1785
+ "type": "uint32",
1786
+ "name": "txOutputIndex"
1787
+ },
1788
+ {
1789
+ "type": "uint64",
1790
+ "name": "txOutputValue"
1791
+ }
1792
+ ]
1793
+ },
1794
+ {
1795
+ "type": "bytes20",
1796
+ "name": "walletPubKeyHash"
1797
+ }
1798
+ ],
1799
+ "outputs": []
1800
+ },
1801
+ {
1802
+ "type": "function",
1803
+ "name": "submitRedemptionProof",
1804
+ "constant": false,
1805
+ "payable": false,
1806
+ "gas": 29000000,
1807
+ "inputs": [
1808
+ {
1809
+ "type": "tuple",
1810
+ "name": "redemptionTx",
1811
+ "components": [
1812
+ {
1813
+ "type": "bytes4",
1814
+ "name": "version"
1815
+ },
1816
+ {
1817
+ "type": "bytes",
1818
+ "name": "inputVector"
1819
+ },
1820
+ {
1821
+ "type": "bytes",
1822
+ "name": "outputVector"
1823
+ },
1824
+ {
1825
+ "type": "bytes4",
1826
+ "name": "locktime"
1827
+ }
1828
+ ]
1829
+ },
1830
+ {
1831
+ "type": "tuple",
1832
+ "name": "redemptionProof",
1833
+ "components": [
1834
+ {
1835
+ "type": "bytes",
1836
+ "name": "merkleProof"
1837
+ },
1838
+ {
1839
+ "type": "uint256",
1840
+ "name": "txIndexInBlock"
1841
+ },
1842
+ {
1843
+ "type": "bytes",
1844
+ "name": "bitcoinHeaders"
1845
+ }
1846
+ ]
1847
+ },
1848
+ {
1849
+ "type": "tuple",
1850
+ "name": "mainUtxo",
1851
+ "components": [
1852
+ {
1853
+ "type": "bytes32",
1854
+ "name": "txHash"
1855
+ },
1856
+ {
1857
+ "type": "uint32",
1858
+ "name": "txOutputIndex"
1859
+ },
1860
+ {
1861
+ "type": "uint64",
1862
+ "name": "txOutputValue"
1863
+ }
1864
+ ]
1865
+ },
1866
+ {
1867
+ "type": "bytes20",
1868
+ "name": "walletPubKeyHash"
1869
+ }
1870
+ ],
1871
+ "outputs": []
1872
+ },
1873
+ {
1874
+ "type": "function",
1875
+ "name": "timedOutRedemptions",
1876
+ "constant": true,
1877
+ "stateMutability": "view",
1878
+ "payable": false,
1879
+ "gas": 29000000,
1880
+ "inputs": [
1881
+ {
1882
+ "type": "uint256",
1883
+ "name": "redemptionKey"
1884
+ }
1885
+ ],
1886
+ "outputs": [
1887
+ {
1888
+ "type": "tuple",
1889
+ "components": [
1890
+ {
1891
+ "type": "address",
1892
+ "name": "redeemer"
1893
+ },
1894
+ {
1895
+ "type": "uint64",
1896
+ "name": "requestedAmount"
1897
+ },
1898
+ {
1899
+ "type": "uint64",
1900
+ "name": "treasuryFee"
1901
+ },
1902
+ {
1903
+ "type": "uint64",
1904
+ "name": "txMaxFee"
1905
+ },
1906
+ {
1907
+ "type": "uint32",
1908
+ "name": "requestedAt"
1909
+ }
1910
+ ]
1911
+ }
1912
+ ]
1913
+ },
1914
+ {
1915
+ "type": "function",
1916
+ "name": "transferGovernance",
1917
+ "constant": false,
1918
+ "payable": false,
1919
+ "gas": 29000000,
1920
+ "inputs": [
1921
+ {
1922
+ "type": "address",
1923
+ "name": "newGovernance"
1924
+ }
1925
+ ],
1926
+ "outputs": []
1927
+ },
1928
+ {
1929
+ "type": "function",
1930
+ "name": "treasury",
1931
+ "constant": true,
1932
+ "stateMutability": "view",
1933
+ "payable": false,
1934
+ "gas": 29000000,
1935
+ "inputs": [],
1936
+ "outputs": [
1937
+ {
1938
+ "type": "address"
1939
+ }
1940
+ ]
1941
+ },
1942
+ {
1943
+ "type": "function",
1944
+ "name": "txProofDifficultyFactor",
1945
+ "constant": true,
1946
+ "stateMutability": "view",
1947
+ "payable": false,
1948
+ "gas": 29000000,
1949
+ "inputs": [],
1950
+ "outputs": [
1951
+ {
1952
+ "type": "uint256"
1953
+ }
1954
+ ]
1955
+ },
1956
+ {
1957
+ "type": "function",
1958
+ "name": "updateDepositParameters",
1959
+ "constant": false,
1960
+ "payable": false,
1961
+ "gas": 29000000,
1962
+ "inputs": [
1963
+ {
1964
+ "type": "uint64",
1965
+ "name": "depositDustThreshold"
1966
+ },
1967
+ {
1968
+ "type": "uint64",
1969
+ "name": "depositTreasuryFeeDivisor"
1970
+ },
1971
+ {
1972
+ "type": "uint64",
1973
+ "name": "depositTxMaxFee"
1974
+ }
1975
+ ],
1976
+ "outputs": []
1977
+ },
1978
+ {
1979
+ "type": "function",
1980
+ "name": "updateFraudParameters",
1981
+ "constant": false,
1982
+ "payable": false,
1983
+ "gas": 29000000,
1984
+ "inputs": [
1985
+ {
1986
+ "type": "uint256",
1987
+ "name": "fraudChallengeDepositAmount"
1988
+ },
1989
+ {
1990
+ "type": "uint256",
1991
+ "name": "fraudChallengeDefeatTimeout"
1992
+ },
1993
+ {
1994
+ "type": "uint96",
1995
+ "name": "fraudSlashingAmount"
1996
+ },
1997
+ {
1998
+ "type": "uint256",
1999
+ "name": "fraudNotifierRewardMultiplier"
2000
+ }
2001
+ ],
2002
+ "outputs": []
2003
+ },
2004
+ {
2005
+ "type": "function",
2006
+ "name": "updateMovingFundsParameters",
2007
+ "constant": false,
2008
+ "payable": false,
2009
+ "gas": 29000000,
2010
+ "inputs": [
2011
+ {
2012
+ "type": "uint64",
2013
+ "name": "movingFundsTxMaxTotalFee"
2014
+ },
2015
+ {
2016
+ "type": "uint64",
2017
+ "name": "movingFundsDustThreshold"
2018
+ },
2019
+ {
2020
+ "type": "uint32",
2021
+ "name": "movingFundsTimeoutResetDelay"
2022
+ },
2023
+ {
2024
+ "type": "uint32",
2025
+ "name": "movingFundsTimeout"
2026
+ },
2027
+ {
2028
+ "type": "uint96",
2029
+ "name": "movingFundsTimeoutSlashingAmount"
2030
+ },
2031
+ {
2032
+ "type": "uint256",
2033
+ "name": "movingFundsTimeoutNotifierRewardMultiplier"
2034
+ },
2035
+ {
2036
+ "type": "uint64",
2037
+ "name": "movedFundsSweepTxMaxTotalFee"
2038
+ },
2039
+ {
2040
+ "type": "uint32",
2041
+ "name": "movedFundsSweepTimeout"
2042
+ },
2043
+ {
2044
+ "type": "uint96",
2045
+ "name": "movedFundsSweepTimeoutSlashingAmount"
2046
+ },
2047
+ {
2048
+ "type": "uint256",
2049
+ "name": "movedFundsSweepTimeoutNotifierRewardMultiplier"
2050
+ }
2051
+ ],
2052
+ "outputs": []
2053
+ },
2054
+ {
2055
+ "type": "function",
2056
+ "name": "updateRedemptionParameters",
2057
+ "constant": false,
2058
+ "payable": false,
2059
+ "gas": 29000000,
2060
+ "inputs": [
2061
+ {
2062
+ "type": "uint64",
2063
+ "name": "redemptionDustThreshold"
2064
+ },
2065
+ {
2066
+ "type": "uint64",
2067
+ "name": "redemptionTreasuryFeeDivisor"
2068
+ },
2069
+ {
2070
+ "type": "uint64",
2071
+ "name": "redemptionTxMaxFee"
2072
+ },
2073
+ {
2074
+ "type": "uint256",
2075
+ "name": "redemptionTimeout"
2076
+ },
2077
+ {
2078
+ "type": "uint96",
2079
+ "name": "redemptionTimeoutSlashingAmount"
2080
+ },
2081
+ {
2082
+ "type": "uint256",
2083
+ "name": "redemptionTimeoutNotifierRewardMultiplier"
2084
+ }
2085
+ ],
2086
+ "outputs": []
2087
+ },
2088
+ {
2089
+ "type": "function",
2090
+ "name": "updateWalletParameters",
2091
+ "constant": false,
2092
+ "payable": false,
2093
+ "gas": 29000000,
2094
+ "inputs": [
2095
+ {
2096
+ "type": "uint32",
2097
+ "name": "walletCreationPeriod"
2098
+ },
2099
+ {
2100
+ "type": "uint64",
2101
+ "name": "walletCreationMinBtcBalance"
2102
+ },
2103
+ {
2104
+ "type": "uint64",
2105
+ "name": "walletCreationMaxBtcBalance"
2106
+ },
2107
+ {
2108
+ "type": "uint64",
2109
+ "name": "walletClosureMinBtcBalance"
2110
+ },
2111
+ {
2112
+ "type": "uint32",
2113
+ "name": "walletMaxAge"
2114
+ },
2115
+ {
2116
+ "type": "uint64",
2117
+ "name": "walletMaxBtcTransfer"
2118
+ },
2119
+ {
2120
+ "type": "uint32",
2121
+ "name": "walletClosingPeriod"
2122
+ }
2123
+ ],
2124
+ "outputs": []
2125
+ },
2126
+ {
2127
+ "type": "function",
2128
+ "name": "walletParameters",
2129
+ "constant": true,
2130
+ "stateMutability": "view",
2131
+ "payable": false,
2132
+ "gas": 29000000,
2133
+ "inputs": [],
2134
+ "outputs": [
2135
+ {
2136
+ "type": "uint32",
2137
+ "name": "walletCreationPeriod"
2138
+ },
2139
+ {
2140
+ "type": "uint64",
2141
+ "name": "walletCreationMinBtcBalance"
2142
+ },
2143
+ {
2144
+ "type": "uint64",
2145
+ "name": "walletCreationMaxBtcBalance"
2146
+ },
2147
+ {
2148
+ "type": "uint64",
2149
+ "name": "walletClosureMinBtcBalance"
2150
+ },
2151
+ {
2152
+ "type": "uint32",
2153
+ "name": "walletMaxAge"
2154
+ },
2155
+ {
2156
+ "type": "uint64",
2157
+ "name": "walletMaxBtcTransfer"
2158
+ },
2159
+ {
2160
+ "type": "uint32",
2161
+ "name": "walletClosingPeriod"
2162
+ }
2163
+ ]
2164
+ },
2165
+ {
2166
+ "type": "function",
2167
+ "name": "wallets",
2168
+ "constant": true,
2169
+ "stateMutability": "view",
2170
+ "payable": false,
2171
+ "gas": 29000000,
2172
+ "inputs": [
2173
+ {
2174
+ "type": "bytes20",
2175
+ "name": "walletPubKeyHash"
2176
+ }
2177
+ ],
2178
+ "outputs": [
2179
+ {
2180
+ "type": "tuple",
2181
+ "components": [
2182
+ {
2183
+ "type": "bytes32",
2184
+ "name": "ecdsaWalletID"
2185
+ },
2186
+ {
2187
+ "type": "bytes32",
2188
+ "name": "mainUtxoHash"
2189
+ },
2190
+ {
2191
+ "type": "uint64",
2192
+ "name": "pendingRedemptionsValue"
2193
+ },
2194
+ {
2195
+ "type": "uint32",
2196
+ "name": "createdAt"
2197
+ },
2198
+ {
2199
+ "type": "uint32",
2200
+ "name": "movingFundsRequestedAt"
2201
+ },
2202
+ {
2203
+ "type": "uint32",
2204
+ "name": "closingStartedAt"
2205
+ },
2206
+ {
2207
+ "type": "uint32",
2208
+ "name": "pendingMovedFundsSweepRequestsCount"
2209
+ },
2210
+ {
2211
+ "type": "uint8",
2212
+ "name": "state"
2213
+ },
2214
+ {
2215
+ "type": "bytes32",
2216
+ "name": "movingFundsTargetWalletsCommitmentHash"
2217
+ }
2218
+ ]
2219
+ }
2220
+ ]
2221
+ }
2222
+ ],
2223
+ "transactionHash": "0xf0f5df8239cff296827d1b39d74f4da660498dd72f9208b2956d7b0181435ce1",
2224
+ "receipt": {
2225
+ "to": null,
2226
+ "from": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8",
2227
+ "contractAddress": "0xD499f5F7d3C918D0e553BA03954c4E02af16B6e4",
2228
+ "transactionIndex": 0,
2229
+ "gasUsed": "1132499",
2230
+ "logsBloom": "0x00000000000000000000000000000000400000004000000000000000000000000000000000000040000040000000000000000000000000000000000010000000000000000000000000000000000002000000000000000800000000000100000000000000000000000000000000000000000000800000000000000000001000000000000000000000000000000000000000000000000080000000000000800000000000000000000000000000000400000000000000000000000000000000000000000020040000000000000000040000000000000400000000000000000000000000000000000000000800000000000000000000000000000000000000000000",
2231
+ "blockHash": "0xca7714dcf61ef3f481917a255b0c6779dbe85d126527b10ed6edf1ee61f84e8f",
2232
+ "transactionHash": "0xf0f5df8239cff296827d1b39d74f4da660498dd72f9208b2956d7b0181435ce1",
2233
+ "logs": [
2234
+ {
2235
+ "transactionIndex": 0,
2236
+ "blockNumber": 50,
2237
+ "transactionHash": "0xf0f5df8239cff296827d1b39d74f4da660498dd72f9208b2956d7b0181435ce1",
2238
+ "address": "0xD499f5F7d3C918D0e553BA03954c4E02af16B6e4",
2239
+ "topics": [
2240
+ "0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b",
2241
+ "0x000000000000000000000000a85b028984bc54a2a3d844b070544f59dddf89de"
2242
+ ],
2243
+ "data": "0x",
2244
+ "logIndex": 0,
2245
+ "blockHash": "0xca7714dcf61ef3f481917a255b0c6779dbe85d126527b10ed6edf1ee61f84e8f"
2246
+ },
2247
+ {
2248
+ "transactionIndex": 0,
2249
+ "blockNumber": 50,
2250
+ "transactionHash": "0xf0f5df8239cff296827d1b39d74f4da660498dd72f9208b2956d7b0181435ce1",
2251
+ "address": "0xD499f5F7d3C918D0e553BA03954c4E02af16B6e4",
2252
+ "topics": [
2253
+ "0x5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80"
2254
+ ],
2255
+ "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070997970c51812dc3a010c7d01b50e0d17dc79c8",
2256
+ "logIndex": 1,
2257
+ "blockHash": "0xca7714dcf61ef3f481917a255b0c6779dbe85d126527b10ed6edf1ee61f84e8f"
2258
+ },
2259
+ {
2260
+ "transactionIndex": 0,
2261
+ "blockNumber": 50,
2262
+ "transactionHash": "0xf0f5df8239cff296827d1b39d74f4da660498dd72f9208b2956d7b0181435ce1",
2263
+ "address": "0xD499f5F7d3C918D0e553BA03954c4E02af16B6e4",
2264
+ "topics": [
2265
+ "0x7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498"
2266
+ ],
2267
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000001",
2268
+ "logIndex": 2,
2269
+ "blockHash": "0xca7714dcf61ef3f481917a255b0c6779dbe85d126527b10ed6edf1ee61f84e8f"
2270
+ },
2271
+ {
2272
+ "transactionIndex": 0,
2273
+ "blockNumber": 50,
2274
+ "transactionHash": "0xf0f5df8239cff296827d1b39d74f4da660498dd72f9208b2956d7b0181435ce1",
2275
+ "address": "0xD499f5F7d3C918D0e553BA03954c4E02af16B6e4",
2276
+ "topics": [
2277
+ "0x7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f"
2278
+ ],
2279
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ed17543171c1459714cdc6519b58ffcc29a3c3c9",
2280
+ "logIndex": 3,
2281
+ "blockHash": "0xca7714dcf61ef3f481917a255b0c6779dbe85d126527b10ed6edf1ee61f84e8f"
2282
+ }
2283
+ ],
2284
+ "blockNumber": 50,
2285
+ "cumulativeGasUsed": "1132499",
2286
+ "status": 1,
2287
+ "byzantium": true
2288
+ },
2289
+ "numDeployments": 1,
2290
+ "libraries": {
2291
+ "Deposit": "0x0AFdAcD509e73115EA1654B1a770f1a807e7c9C0",
2292
+ "DepositSweep": "0xc63d2a04762529edB649d7a4cC3E57A0085e8544",
2293
+ "Redemption": "0x1a6a3e7Bb246158dF31d8f924B84D961669Ba4e5",
2294
+ "Wallets": "0x093e8F4d8f267d2CeEc9eB889E2054710d187beD",
2295
+ "Fraud": "0xBa3e08b4753E68952031102518379ED2fDADcA30",
2296
+ "MovingFunds": "0x34ee84036C47d852901b7069aBD80171D9A489a6"
2297
+ },
2298
+ "implementation": "0xa85b028984bC54A2a3D844B070544F59dDDf89DE",
2299
+ "devdoc": "Contract deployed as upgradable proxy"
2300
+ }