@keep-network/tbtc-v2 0.1.1-dev.72 → 0.1.1-dev.75

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 (89) hide show
  1. package/artifacts/Bank.json +15 -15
  2. package/artifacts/Bridge.json +14 -1
  3. package/artifacts/DefaultProxyAdmin.json +5 -5
  4. package/artifacts/Deposit.json +10 -10
  5. package/artifacts/DepositSweep.json +11 -11
  6. package/artifacts/EcdsaDkgValidator.json +9 -9
  7. package/artifacts/EcdsaInactivity.json +8 -8
  8. package/artifacts/Fraud.json +21 -21
  9. package/artifacts/KeepRegistry.json +1 -1
  10. package/artifacts/KeepStake.json +2 -2
  11. package/artifacts/KeepToken.json +2 -2
  12. package/artifacts/KeepTokenStaking.json +1 -1
  13. package/artifacts/MovingFunds.json +33 -33
  14. package/artifacts/NuCypherStakingEscrow.json +1 -1
  15. package/artifacts/NuCypherToken.json +2 -2
  16. package/artifacts/RandomBeaconStub.json +5 -5
  17. package/artifacts/Redemption.json +22 -22
  18. package/artifacts/ReimbursementPool.json +5 -5
  19. package/artifacts/Relay.json +9 -9
  20. package/artifacts/SortitionPool.json +9 -9
  21. package/artifacts/T.json +2 -2
  22. package/artifacts/TBTC.json +17 -17
  23. package/artifacts/TBTCToken.json +15 -15
  24. package/artifacts/TokenStaking.json +1 -1
  25. package/artifacts/TokenholderGovernor.json +9 -9
  26. package/artifacts/TokenholderTimelock.json +8 -8
  27. package/artifacts/VendingMachine.json +18 -18
  28. package/artifacts/VendingMachineKeep.json +1 -1
  29. package/artifacts/VendingMachineNuCypher.json +1 -1
  30. package/artifacts/WalletRegistry.json +17 -17
  31. package/artifacts/WalletRegistry_Implementation.json +73 -73
  32. package/artifacts/WalletRegistry_Proxy.json +17 -17
  33. package/artifacts/Wallets.json +12 -12
  34. package/artifacts/solcInputs/49c80d59bf0ae61f27a8bb5db19af68a.json +272 -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 +2 -2
  39. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +1 -1
  40. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.json +2 -2
  41. package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
  42. package/build/contracts/bridge/Bridge.sol/Bridge.json +58 -42
  43. package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +1 -1
  44. package/build/contracts/bridge/BridgeState.sol/BridgeState.json +8 -2
  45. package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +1 -1
  46. package/build/contracts/bridge/Deposit.sol/Deposit.json +2 -2
  47. package/build/contracts/bridge/DepositSweep.sol/DepositSweep.dbg.json +1 -1
  48. package/build/contracts/bridge/DepositSweep.sol/DepositSweep.json +2 -2
  49. package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +1 -1
  50. package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +1 -1
  51. package/build/contracts/bridge/Fraud.sol/Fraud.json +2 -2
  52. package/build/contracts/bridge/Heartbeat.sol/Heartbeat.dbg.json +1 -1
  53. package/build/contracts/bridge/Heartbeat.sol/Heartbeat.json +2 -2
  54. package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +1 -1
  55. package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +1 -1
  56. package/build/contracts/bridge/MovingFunds.sol/MovingFunds.json +2 -2
  57. package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +1 -1
  58. package/build/contracts/bridge/Redemption.sol/OutboundTx.json +2 -2
  59. package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +1 -1
  60. package/build/contracts/bridge/Redemption.sol/Redemption.json +2 -2
  61. package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
  62. package/build/contracts/bridge/VendingMachine.sol/VendingMachine.json +2 -2
  63. package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +1 -1
  64. package/build/contracts/bridge/Wallets.sol/Wallets.json +2 -2
  65. package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
  66. package/build/contracts/token/TBTC.sol/TBTC.json +2 -2
  67. package/build/contracts/vault/DonationVault.sol/DonationVault.dbg.json +1 -1
  68. package/build/contracts/vault/DonationVault.sol/DonationVault.json +2 -2
  69. package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
  70. package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
  71. package/build/contracts/vault/TBTCVault.sol/TBTCVault.json +2 -2
  72. package/contracts/GovernanceUtils.sol +3 -3
  73. package/contracts/bank/Bank.sol +2 -2
  74. package/contracts/bridge/BitcoinTx.sol +7 -7
  75. package/contracts/bridge/Bridge.sol +221 -203
  76. package/contracts/bridge/BridgeState.sol +75 -49
  77. package/contracts/bridge/Deposit.sol +5 -5
  78. package/contracts/bridge/DepositSweep.sol +12 -12
  79. package/contracts/bridge/Fraud.sol +25 -25
  80. package/contracts/bridge/Heartbeat.sol +1 -1
  81. package/contracts/bridge/MovingFunds.sol +81 -72
  82. package/contracts/bridge/Redemption.sol +32 -31
  83. package/contracts/bridge/Wallets.sol +29 -29
  84. package/contracts/vault/DonationVault.sol +9 -9
  85. package/contracts/vault/IVault.sol +4 -4
  86. package/contracts/vault/TBTCVault.sol +14 -14
  87. package/export.json +13 -0
  88. package/package.json +3 -3
  89. package/artifacts/solcInputs/55df7785455cbf6ded1b912686e91d3f.json +0 -269
@@ -129,14 +129,14 @@ library Wallets {
129
129
  /// UTXO of the given active wallet, as currently known on the
130
130
  /// Ethereum chain. If there is no active wallet at the moment, or
131
131
  /// the active wallet has no main UTXO, this parameter can be
132
- /// empty as it is ignored.
133
- /// - Wallet creation must not be in progress
132
+ /// empty as it is ignored,
133
+ /// - Wallet creation must not be in progress,
134
134
  /// - If the active wallet is set, one of the following
135
135
  /// conditions must be true:
136
136
  /// - The active wallet BTC balance is above the minimum threshold
137
137
  /// and the active wallet is old enough, i.e. the creation period
138
- /// was elapsed since its creation time
139
- /// - The active wallet BTC balance is above the maximum threshold
138
+ /// was elapsed since its creation time,
139
+ /// - The active wallet BTC balance is above the maximum threshold.
140
140
  function requestNewWallet(
141
141
  BridgeState.Storage storage self,
142
142
  BitcoinTx.UTXO calldata activeWalletMainUtxo
@@ -181,7 +181,7 @@ library Wallets {
181
181
  }
182
182
 
183
183
  /// @notice Gets BTC balance for given the wallet.
184
- /// @param walletPubKeyHash 20-byte public key hash of the wallet
184
+ /// @param walletPubKeyHash 20-byte public key hash of the wallet.
185
185
  /// @param walletMainUtxo Data of the wallet's main UTXO, as currently
186
186
  /// known on the Ethereum chain.
187
187
  /// @return walletBtcBalance Current BTC balance for the given wallet.
@@ -227,8 +227,8 @@ library Wallets {
227
227
  /// @param publicKeyX Wallet's public key's X coordinate.
228
228
  /// @param publicKeyY Wallet's public key's Y coordinate.
229
229
  /// @dev Requirements:
230
- /// - The only caller authorized to call this function is `registry`
231
- /// - Given wallet data must not belong to an already registered wallet
230
+ /// - The only caller authorized to call this function is `registry`,
231
+ /// - Given wallet data must not belong to an already registered wallet.
232
232
  function registerNewWallet(
233
233
  BridgeState.Storage storage self,
234
234
  bytes32 ecdsaWalletID,
@@ -268,8 +268,8 @@ library Wallets {
268
268
  /// @param publicKeyX Wallet's public key's X coordinate.
269
269
  /// @param publicKeyY Wallet's public key's Y coordinate.
270
270
  /// @dev Requirements:
271
- /// - The only caller authorized to call this function is `registry`
272
- /// - Wallet must be in Live state
271
+ /// - The only caller authorized to call this function is `registry`,
272
+ /// - Wallet must be in Live state.
273
273
  function notifyWalletHeartbeatFailed(
274
274
  BridgeState.Storage storage self,
275
275
  bytes32 publicKeyX,
@@ -298,9 +298,9 @@ library Wallets {
298
298
  /// still in the Live state. That means multiple action timeouts can
299
299
  /// be reported for the same wallet but only the first report
300
300
  /// requests the wallet to move their funds.
301
- /// @param walletPubKeyHash 20-byte public key hash of the wallet
301
+ /// @param walletPubKeyHash 20-byte public key hash of the wallet.
302
302
  /// @dev Requirements:
303
- /// - The wallet must be in the `Live` or `MovingFunds` state
303
+ /// - The wallet must be in the `Live` or `MovingFunds` state.
304
304
  function notifyWalletTimedOutRedemption(
305
305
  BridgeState.Storage storage self,
306
306
  bytes20 walletPubKeyHash
@@ -322,19 +322,19 @@ library Wallets {
322
322
 
323
323
  /// @notice Notifies that the wallet is either old enough or has too few
324
324
  /// satoshis left and qualifies to be closed.
325
- /// @param walletPubKeyHash 20-byte public key hash of the wallet
325
+ /// @param walletPubKeyHash 20-byte public key hash of the wallet.
326
326
  /// @param walletMainUtxo Data of the wallet's main UTXO, as currently
327
327
  /// known on the Ethereum chain.
328
328
  /// @dev Requirements:
329
- /// - Wallet must not be set as the current active wallet
329
+ /// - Wallet must not be set as the current active wallet,
330
330
  /// - Wallet must exceed the wallet maximum age OR the wallet BTC
331
331
  /// balance must be lesser than the minimum threshold. If the latter
332
332
  /// case is true, the `walletMainUtxo` components must point to the
333
333
  /// recent main UTXO of the given wallet, as currently known on the
334
334
  /// Ethereum chain. If the wallet has no main UTXO, this parameter
335
335
  /// can be empty as it is ignored since the wallet balance is
336
- /// assumed to be zero.
337
- /// - Wallet must be in Live state
336
+ /// assumed to be zero,
337
+ /// - Wallet must be in Live state.
338
338
  function notifyCloseableWallet(
339
339
  BridgeState.Storage storage self,
340
340
  bytes20 walletPubKeyHash,
@@ -370,9 +370,9 @@ library Wallets {
370
370
  /// funds request refers to the current active wallet, such a wallet
371
371
  /// is no longer considered active and the active wallet slot
372
372
  /// is unset allowing to trigger a new wallet creation immediately.
373
- /// @param walletPubKeyHash 20-byte public key hash of the wallet
373
+ /// @param walletPubKeyHash 20-byte public key hash of the wallet.
374
374
  /// @dev Requirements:
375
- /// - The caller must make sure that the wallet is in the Live state
375
+ /// - The caller must make sure that the wallet is in the Live state.
376
376
  function moveFunds(
377
377
  BridgeState.Storage storage self,
378
378
  bytes20 walletPubKeyHash
@@ -403,10 +403,10 @@ library Wallets {
403
403
  }
404
404
 
405
405
  /// @notice Begins the closing period of the given wallet.
406
- /// @param walletPubKeyHash 20-byte public key hash of the wallet
406
+ /// @param walletPubKeyHash 20-byte public key hash of the wallet.
407
407
  /// @dev Requirements:
408
408
  /// - The caller must make sure that the wallet is in the
409
- /// MovingFunds state
409
+ /// MovingFunds state.
410
410
  function beginWalletClosing(
411
411
  BridgeState.Storage storage self,
412
412
  bytes20 walletPubKeyHash
@@ -423,10 +423,10 @@ library Wallets {
423
423
  /// @notice Notifies about the end of the closing period for the given wallet.
424
424
  /// Closes the wallet ultimately and notifies the ECDSA registry
425
425
  /// about this fact.
426
- /// @param walletPubKeyHash 20-byte public key hash of the wallet
426
+ /// @param walletPubKeyHash 20-byte public key hash of the wallet.
427
427
  /// @dev Requirements:
428
- /// - The wallet must be in the Closing state
429
- /// - The wallet closing period must have elapsed
428
+ /// - The wallet must be in the Closing state,
429
+ /// - The wallet closing period must have elapsed.
430
430
  function notifyWalletClosingPeriodElapsed(
431
431
  BridgeState.Storage storage self,
432
432
  bytes20 walletPubKeyHash
@@ -450,9 +450,9 @@ library Wallets {
450
450
 
451
451
  /// @notice Finalizes the closing period of the given wallet and notifies
452
452
  /// the ECDSA registry about this fact.
453
- /// @param walletPubKeyHash 20-byte public key hash of the wallet
453
+ /// @param walletPubKeyHash 20-byte public key hash of the wallet.
454
454
  /// @dev Requirements:
455
- /// - The caller must make sure that the wallet is in the Closing state
455
+ /// - The caller must make sure that the wallet is in the Closing state.
456
456
  function finalizeWalletClosing(
457
457
  BridgeState.Storage storage self,
458
458
  bytes20 walletPubKeyHash
@@ -471,7 +471,7 @@ library Wallets {
471
471
  /// active wallet, such a wallet is no longer considered active and
472
472
  /// the active wallet slot is unset allowing to trigger a new wallet
473
473
  /// creation immediately.
474
- /// @param walletPubKeyHash 20-byte public key hash of the wallet
474
+ /// @param walletPubKeyHash 20-byte public key hash of the wallet.
475
475
  /// @dev Requirements:
476
476
  /// - The caller must make sure that the wallet is in the
477
477
  /// Live or MovingFunds or Closing state.
@@ -503,16 +503,16 @@ library Wallets {
503
503
  /// successfully. Checks if the funds were moved to the expected
504
504
  /// target wallets. Closes the source wallet if everything went
505
505
  /// good and reverts otherwise.
506
- /// @param walletPubKeyHash 20-byte public key hash of the wallet
506
+ /// @param walletPubKeyHash 20-byte public key hash of the wallet.
507
507
  /// @param targetWalletsHash 32-byte keccak256 hash over the list of
508
508
  /// 20-byte public key hashes of the target wallets actually used
509
509
  /// within the moving funds transactions.
510
510
  /// @dev Requirements:
511
511
  /// - The caller must make sure the moving funds transaction actually
512
- /// happened on Bitcoin chain and fits the protocol requirements.
513
- /// - The source wallet must be in the MovingFunds state
512
+ /// happened on Bitcoin chain and fits the protocol requirements,
513
+ /// - The source wallet must be in the MovingFunds state,
514
514
  /// - The target wallets commitment must be submitted by the source
515
- /// wallet.
515
+ /// wallet,
516
516
  /// - The actual target wallets used in the moving funds transaction
517
517
  /// must be exactly the same as the target wallets commitment.
518
518
  function notifyWalletFundsMoved(
@@ -49,10 +49,10 @@ contract DonationVault is IVault {
49
49
  /// @notice Transfers the given `amount` of the Bank balance from the
50
50
  /// caller to the Donation Vault and immediately decreases the
51
51
  /// vault's balance in the Bank by the transferred `amount`.
52
- /// @param amount Amount of the Bank balance to donate
52
+ /// @param amount Amount of the Bank balance to donate.
53
53
  /// @dev Requirements:
54
54
  /// - The caller's balance in the Bank must be greater than or equal
55
- /// to the `amount`.
55
+ /// to the `amount`,
56
56
  /// - Donation Vault must have an allowance for caller's balance in
57
57
  /// the Bank for at least `amount`.
58
58
  function donate(uint256 amount) external {
@@ -73,11 +73,11 @@ contract DonationVault is IVault {
73
73
  /// `owner` to the Donation Vault and immediately decreases the
74
74
  /// vault's balance in the Bank by the transferred `amount`.
75
75
  /// @param owner Address of the Bank balance owner who approved their
76
- /// balance to be used by the vault
76
+ /// balance to be used by the vault.
77
77
  /// @param amount The amount of the Bank balance approved by the owner
78
- /// to be used by the vault
78
+ /// to be used by the vault.
79
79
  /// @dev Requirements:
80
- /// - Can only be called by the Bank via `approveBalanceAndCall`.
80
+ /// - Can only be called by the Bank via `approveBalanceAndCall`,
81
81
  /// - The `owner` balance in the Bank must be greater than or equal
82
82
  /// to the `amount`.
83
83
  function receiveBalanceApproval(address owner, uint256 amount)
@@ -99,13 +99,13 @@ contract DonationVault is IVault {
99
99
  /// @notice Ignores the deposited amounts and does not increase depositors'
100
100
  /// individual balances. The vault decreases its own tBTC balance
101
101
  /// in the Bank by the total deposited amount.
102
- /// @param depositors Addresses of depositors whose deposits have been swept
102
+ /// @param depositors Addresses of depositors whose deposits have been swept.
103
103
  /// @param depositedAmounts Amounts deposited by individual depositors and
104
- /// swept
104
+ /// swept.
105
105
  /// @dev Requirements:
106
106
  /// - Can only be called by the Bank after the Bridge swept deposits
107
- /// and Bank increased balance for the vault.
108
- /// - The `depositors` array must not be empty.
107
+ /// and Bank increased balance for the vault,
108
+ /// - The `depositors` array must not be empty,
109
109
  /// - The `depositors` array length must be equal to the
110
110
  /// `depositedAmounts` array length.
111
111
  function receiveBalanceIncrease(
@@ -25,9 +25,9 @@ interface IVault {
25
25
  /// and call the vault to use the approved balance in a single
26
26
  /// transaction.
27
27
  /// @param owner Address of the Bank balance owner who approved their
28
- /// balance to be used by the vault
28
+ /// balance to be used by the vault.
29
29
  /// @param amount The amount of the Bank balance approved by the owner
30
- /// to be used by the vault
30
+ /// to be used by the vault.
31
31
  // @dev The implementation must ensure this function can only be called
32
32
  /// by the Bank. The Bank does _not_ guarantee that the `amount`
33
33
  /// approved by the `owner` currently exists on their balance. That is,
@@ -46,9 +46,9 @@ interface IVault {
46
46
  /// depositor does not have to execute additional transaction after
47
47
  /// the deposit gets swept by the Bridge to approve and transfer
48
48
  /// their balance to the vault.
49
- /// @param depositors Addresses of depositors whose deposits have been swept
49
+ /// @param depositors Addresses of depositors whose deposits have been swept.
50
50
  /// @param depositedAmounts Amounts deposited by individual depositors and
51
- /// swept
51
+ /// swept.
52
52
  /// @dev The implementation must ensure this function can only be called
53
53
  /// by the Bank. The Bank guarantees that the vault's balance was
54
54
  /// increased by the sum of all deposited amounts before this function
@@ -61,9 +61,9 @@ contract TBTCVault is IVault, Governable {
61
61
 
62
62
  /// @notice Allows the governance of the TBTCVault to recover any ERC20
63
63
  /// token sent mistakenly to the TBTC token contract address.
64
- /// @param token Address of the recovered ERC20 token contract
65
- /// @param recipient Address the recovered token should be sent to
66
- /// @param amount Recovered amount
64
+ /// @param token Address of the recovered ERC20 token contract.
65
+ /// @param recipient Address the recovered token should be sent to.
66
+ /// @param amount Recovered amount.
67
67
  function recoverERC20(
68
68
  IERC20 token,
69
69
  address recipient,
@@ -74,10 +74,10 @@ contract TBTCVault is IVault, Governable {
74
74
 
75
75
  /// @notice Allows the governance of the TBTCVault to recover any ERC721
76
76
  /// token sent mistakenly to the TBTC token contract address.
77
- /// @param token Address of the recovered ERC721 token contract
78
- /// @param recipient Address the recovered token should be sent to
79
- /// @param tokenId Identifier of the recovered token
80
- /// @param data Additional data
77
+ /// @param token Address of the recovered ERC721 token contract.
78
+ /// @param recipient Address the recovered token should be sent to.
79
+ /// @param tokenId Identifier of the recovered token.
80
+ /// @param data Additional data.
81
81
  function recoverERC721(
82
82
  IERC721 token,
83
83
  address recipient,
@@ -91,7 +91,7 @@ contract TBTCVault is IVault, Governable {
91
91
  /// to TBTC Vault, and mints `amount` of TBTC to the caller.
92
92
  /// @dev TBTC Vault must have an allowance for caller's balance in the Bank
93
93
  /// for at least `amount`.
94
- /// @param amount Amount of TBTC to mint
94
+ /// @param amount Amount of TBTC to mint.
95
95
  function mint(uint256 amount) external {
96
96
  address minter = msg.sender;
97
97
  require(
@@ -105,8 +105,8 @@ contract TBTCVault is IVault, Governable {
105
105
  /// @notice Transfers the given `amount` of the Bank balance from the caller
106
106
  /// to TBTC Vault and mints `amount` of TBTC to the caller.
107
107
  /// @dev Can only be called by the Bank via `approveBalanceAndCall`.
108
- /// @param owner The owner who approved their Bank balance
109
- /// @param amount Amount of TBTC to mint
108
+ /// @param owner The owner who approved their Bank balance.
109
+ /// @param amount Amount of TBTC to mint.
110
110
  function receiveBalanceApproval(address owner, uint256 amount)
111
111
  external
112
112
  override
@@ -140,7 +140,7 @@ contract TBTCVault is IVault, Governable {
140
140
  /// `amount` back to the caller's balance in the Bank.
141
141
  /// @dev Caller must have at least `amount` of TBTC approved to
142
142
  /// TBTC Vault.
143
- /// @param amount Amount of TBTC to redeem
143
+ /// @param amount Amount of TBTC to redeem.
144
144
  function redeem(uint256 amount) external {
145
145
  _redeem(msg.sender, amount);
146
146
  }
@@ -150,9 +150,9 @@ contract TBTCVault is IVault, Governable {
150
150
  /// @dev This function is doing the same as `redeem` but it allows to
151
151
  /// execute redemption without an additional approval transaction.
152
152
  /// The function can be called only via `approveAndCall` of TBTC token.
153
- /// @param from TBTC token holder executing redemption
154
- /// @param amount Amount of TBTC to redeem
155
- /// @param token TBTC token address
153
+ /// @param from TBTC token holder executing redemption.
154
+ /// @param amount Amount of TBTC to redeem.
155
+ /// @param token TBTC token address.
156
156
  function receiveApproval(
157
157
  address from,
158
158
  uint256 amount,
package/export.json CHANGED
@@ -15078,6 +15078,11 @@
15078
15078
  "name": "movingFundsDustThreshold",
15079
15079
  "indexed": false
15080
15080
  },
15081
+ {
15082
+ "type": "uint32",
15083
+ "name": "movingFundsTimeoutResetDelay",
15084
+ "indexed": false
15085
+ },
15081
15086
  {
15082
15087
  "type": "uint32",
15083
15088
  "name": "movingFundsTimeout",
@@ -15780,6 +15785,10 @@
15780
15785
  "type": "uint64",
15781
15786
  "name": "movingFundsDustThreshold"
15782
15787
  },
15788
+ {
15789
+ "type": "uint32",
15790
+ "name": "movingFundsTimeoutResetDelay"
15791
+ },
15783
15792
  {
15784
15793
  "type": "uint32",
15785
15794
  "name": "movingFundsTimeout"
@@ -17110,6 +17119,10 @@
17110
17119
  "type": "uint64",
17111
17120
  "name": "movingFundsDustThreshold"
17112
17121
  },
17122
+ {
17123
+ "type": "uint32",
17124
+ "name": "movingFundsTimeoutResetDelay"
17125
+ },
17113
17126
  {
17114
17127
  "type": "uint32",
17115
17128
  "name": "movingFundsTimeout"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keep-network/tbtc-v2",
3
- "version": "0.1.1-dev.72+main.c88bfef17c6777681345b2ed7030a32b2e5bb4c1",
3
+ "version": "0.1.1-dev.75+main.3200921e06b730fa5ec437a73211a9708e3fae9e",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "artifacts/",
@@ -30,8 +30,8 @@
30
30
  "@keep-network/ecdsa": "development",
31
31
  "@keep-network/random-beacon": "development",
32
32
  "@keep-network/tbtc": ">1.1.2-dev <1.1.2-pre",
33
- "@openzeppelin/contracts": "^4.1.0",
34
- "@openzeppelin/contracts-upgradeable": "^4.6.0-rc.0",
33
+ "@openzeppelin/contracts": "^4.6.0",
34
+ "@openzeppelin/contracts-upgradeable": "^4.6.0",
35
35
  "@tenderly/hardhat-tenderly": "^1.0.12",
36
36
  "@thesis/solidity-contracts": "github:thesis/solidity-contracts#4985bcf"
37
37
  },