@keep-network/tbtc-v2 0.1.1-dev.12 → 0.1.1-dev.15

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 (29) hide show
  1. package/artifacts/TBTC.json +11 -11
  2. package/artifacts/TBTCToken.json +11 -11
  3. package/artifacts/VendingMachine.json +18 -18
  4. package/artifacts/solcInputs/{258c81d1106a1d8dae0e3424749db907.json → a76c1776cec417d8640e42239e23ea4b.json} +20 -14
  5. package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
  6. package/build/contracts/GovernanceUtils.sol/GovernanceUtils.json +2 -2
  7. package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
  8. package/build/contracts/bank/Bank.sol/Bank.json +2 -2
  9. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +1 -1
  10. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.json +2 -2
  11. package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
  12. package/build/contracts/bridge/Bridge.sol/Bridge.json +365 -2
  13. package/build/contracts/bridge/Bridge.sol/IRelay.dbg.json +1 -1
  14. package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
  15. package/build/contracts/bridge/VendingMachine.sol/VendingMachine.json +2 -2
  16. package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
  17. package/build/contracts/token/TBTC.sol/TBTC.json +2 -2
  18. package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
  19. package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
  20. package/build/contracts/vault/TBTCVault.sol/TBTCVault.json +2 -2
  21. package/contracts/GovernanceUtils.sol +1 -1
  22. package/contracts/bank/Bank.sol +1 -1
  23. package/contracts/bridge/BitcoinTx.sol +3 -2
  24. package/contracts/bridge/Bridge.sol +855 -58
  25. package/contracts/bridge/VendingMachine.sol +1 -1
  26. package/contracts/token/TBTC.sol +1 -1
  27. package/contracts/vault/IVault.sol +1 -1
  28. package/contracts/vault/TBTCVault.sol +1 -1
  29. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  // SPDX-License-Identifier: MIT
2
2
 
3
- pragma solidity 0.8.4;
3
+ pragma solidity ^0.8.9;
4
4
 
5
5
  import "@openzeppelin/contracts/access/Ownable.sol";
6
6
  import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
@@ -1,6 +1,6 @@
1
1
  // SPDX-License-Identifier: MIT
2
2
 
3
- pragma solidity 0.8.4;
3
+ pragma solidity ^0.8.9;
4
4
 
5
5
  import "@thesis/solidity-contracts/contracts/token/ERC20WithPermit.sol";
6
6
  import "@thesis/solidity-contracts/contracts/token/MisfundRecovery.sol";
@@ -13,7 +13,7 @@
13
13
  // ▐████▌ ▐████▌
14
14
  // ▐████▌ ▐████▌
15
15
 
16
- pragma solidity 0.8.4;
16
+ pragma solidity ^0.8.9;
17
17
 
18
18
  /// @title Bank Vault interface
19
19
  /// @notice `IVault` is an interface for a smart contract consuming Bank
@@ -13,7 +13,7 @@
13
13
  // ▐████▌ ▐████▌
14
14
  // ▐████▌ ▐████▌
15
15
 
16
- pragma solidity 0.8.4;
16
+ pragma solidity ^0.8.9;
17
17
 
18
18
  import "./IVault.sol";
19
19
  import "../bank/Bank.sol";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keep-network/tbtc-v2",
3
- "version": "0.1.1-dev.12+main.d77a4886d7b089b299be86c5405232f25727b16c",
3
+ "version": "0.1.1-dev.15+main.5afbdfea900c224bf4bec93472205e3a5f0036fb",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "artifacts/",