@keep-network/tbtc-v2 0.1.1-dev.64 → 0.1.1-dev.67

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 (85) hide show
  1. package/artifacts/Bank.json +17 -17
  2. package/artifacts/Bridge.json +1307 -2747
  3. package/artifacts/DefaultProxyAdmin.json +259 -0
  4. package/artifacts/Deposit.json +10 -10
  5. package/artifacts/DepositSweep.json +10 -10
  6. package/artifacts/EcdsaDkgValidator.json +17 -16
  7. package/artifacts/EcdsaInactivity.json +11 -11
  8. package/artifacts/Fraud.json +10 -10
  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 +34 -12
  14. package/artifacts/NuCypherStakingEscrow.json +1 -1
  15. package/artifacts/NuCypherToken.json +2 -2
  16. package/artifacts/RandomBeaconStub.json +18 -18
  17. package/artifacts/Redemption.json +12 -12
  18. package/artifacts/ReimbursementPool.json +17 -17
  19. package/artifacts/Relay.json +12 -12
  20. package/artifacts/SortitionPool.json +99 -38
  21. package/artifacts/T.json +2 -2
  22. package/artifacts/TBTC.json +19 -19
  23. package/artifacts/TBTCToken.json +19 -19
  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 +24 -24
  28. package/artifacts/VendingMachineKeep.json +1 -1
  29. package/artifacts/VendingMachineNuCypher.json +1 -1
  30. package/artifacts/WalletRegistry.json +310 -902
  31. package/artifacts/WalletRegistry_Implementation.json +2824 -0
  32. package/artifacts/WalletRegistry_Proxy.json +259 -0
  33. package/artifacts/Wallets.json +10 -10
  34. package/artifacts/solcInputs/1635d55d57a0a2552952c0d22586ed23.json +56 -0
  35. package/artifacts/solcInputs/903b9dffeb736456e9c3556193b1c8f2.json +269 -0
  36. package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
  37. package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
  38. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +1 -1
  39. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.json +2 -2
  40. package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
  41. package/build/contracts/bridge/Bridge.sol/Bridge.json +120 -71
  42. package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +1 -1
  43. package/build/contracts/bridge/BridgeState.sol/BridgeState.json +2 -2
  44. package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +1 -1
  45. package/build/contracts/bridge/Deposit.sol/Deposit.json +2 -2
  46. package/build/contracts/bridge/DepositSweep.sol/DepositSweep.dbg.json +1 -1
  47. package/build/contracts/bridge/DepositSweep.sol/DepositSweep.json +2 -2
  48. package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +1 -1
  49. package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +1 -1
  50. package/build/contracts/bridge/Fraud.sol/Fraud.json +2 -2
  51. package/build/contracts/bridge/Heartbeat.sol/Heartbeat.dbg.json +1 -1
  52. package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +1 -1
  53. package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +1 -1
  54. package/build/contracts/bridge/MovingFunds.sol/MovingFunds.json +15 -2
  55. package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +1 -1
  56. package/build/contracts/bridge/Redemption.sol/OutboundTx.json +2 -2
  57. package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +1 -1
  58. package/build/contracts/bridge/Redemption.sol/Redemption.json +2 -2
  59. package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
  60. package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +1 -1
  61. package/build/contracts/bridge/Wallets.sol/Wallets.json +2 -2
  62. package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
  63. package/build/contracts/vault/DonationVault.sol/DonationVault.dbg.json +1 -1
  64. package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
  65. package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
  66. package/contracts/bridge/BitcoinTx.sol +8 -0
  67. package/contracts/bridge/Bridge.sol +36 -5
  68. package/contracts/bridge/BridgeState.sol +23 -7
  69. package/contracts/bridge/Deposit.sol +5 -0
  70. package/contracts/bridge/DepositSweep.sol +4 -0
  71. package/contracts/bridge/Fraud.sol +3 -0
  72. package/contracts/bridge/MovingFunds.sol +47 -4
  73. package/contracts/bridge/Redemption.sol +7 -1
  74. package/contracts/bridge/Wallets.sol +3 -0
  75. package/contracts/hardhat-dependency-compiler/.hardhat-dependency-compiler +1 -0
  76. package/contracts/hardhat-dependency-compiler/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol +3 -0
  77. package/contracts/hardhat-dependency-compiler/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol +3 -0
  78. package/deploy/00_resolve_wallet_registry.ts +83 -0
  79. package/deploy/05_deploy_bridge.ts +23 -14
  80. package/deploy/09_transfer_proxy_admin_ownership.ts +23 -0
  81. package/deploy/10_deploy_proxy_admin_with_deputy.ts +33 -0
  82. package/export.json +4124 -3615
  83. package/package.json +6 -2
  84. package/artifacts/WalletRegistryGovernance.json +0 -2364
  85. package/artifacts/solcInputs/2190be89eb3998f4cbf0924da2c5641c.json +0 -227
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../build-info/1bdcea076fa9317a8fe88b8bb7572e29.json"
3
+ "buildInfo": "../../build-info/9ff483a78301407935192c53497ad4ae.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/1bdcea076fa9317a8fe88b8bb7572e29.json"
3
+ "buildInfo": "../../../build-info/9ff483a78301407935192c53497ad4ae.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/1bdcea076fa9317a8fe88b8bb7572e29.json"
3
+ "buildInfo": "../../../build-info/9ff483a78301407935192c53497ad4ae.json"
4
4
  }
@@ -3,8 +3,8 @@
3
3
  "contractName": "BitcoinTx",
4
4
  "sourceName": "contracts/bridge/BitcoinTx.sol",
5
5
  "abi": [],
6
- "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212203a9a7921ec13a3538b250f715f26bbe4d3fdd1c8bbea82819cd353a67e55551564736f6c63430008090033",
7
- "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212203a9a7921ec13a3538b250f715f26bbe4d3fdd1c8bbea82819cd353a67e55551564736f6c63430008090033",
6
+ "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212207188a99e89ed120388de7f03636039912feaa4fec02ffecc45329d444e01445864736f6c63430008090033",
7
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212207188a99e89ed120388de7f03636039912feaa4fec02ffecc45329d444e01445864736f6c63430008090033",
8
8
  "linkReferences": {},
9
9
  "deployedLinkReferences": {}
10
10
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/1bdcea076fa9317a8fe88b8bb7572e29.json"
3
+ "buildInfo": "../../../build-info/9ff483a78301407935192c53497ad4ae.json"
4
4
  }