@keep-network/tbtc-v2 0.1.1-dev.74 → 0.1.1-dev.77

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 (76) hide show
  1. package/artifacts/Bank.json +17 -17
  2. package/artifacts/Bridge.json +91 -3
  3. package/artifacts/Deposit.json +10 -10
  4. package/artifacts/DepositSweep.json +10 -10
  5. package/artifacts/EcdsaDkgValidator.json +16 -17
  6. package/artifacts/EcdsaInactivity.json +6 -6
  7. package/artifacts/EcdsaSortitionPool.json +1004 -0
  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 +13 -13
  14. package/artifacts/NuCypherStakingEscrow.json +1 -1
  15. package/artifacts/NuCypherToken.json +2 -2
  16. package/artifacts/RandomBeaconStub.json +6 -6
  17. package/artifacts/Redemption.json +12 -12
  18. package/artifacts/ReimbursementPool.json +24 -24
  19. package/artifacts/Relay.json +12 -12
  20. package/artifacts/T.json +2 -2
  21. package/artifacts/TBTC.json +19 -19
  22. package/artifacts/TBTCToken.json +19 -19
  23. package/artifacts/TokenStaking.json +1 -1
  24. package/artifacts/TokenholderGovernor.json +9 -9
  25. package/artifacts/TokenholderTimelock.json +8 -8
  26. package/artifacts/VendingMachine.json +24 -24
  27. package/artifacts/VendingMachineKeep.json +1 -1
  28. package/artifacts/VendingMachineNuCypher.json +1 -1
  29. package/artifacts/WalletRegistry.json +893 -1167
  30. package/artifacts/WalletRegistryGovernance.json +2754 -0
  31. package/artifacts/Wallets.json +10 -10
  32. package/artifacts/solcInputs/{3d39c8183330efd748c005f3c281bf2c.json → 490ffccc38e413544104a916bd6aa53c.json} +106 -70
  33. package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
  34. package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
  35. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +1 -1
  36. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.json +2 -2
  37. package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
  38. package/build/contracts/bridge/Bridge.sol/Bridge.json +58 -42
  39. package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +1 -1
  40. package/build/contracts/bridge/BridgeState.sol/BridgeState.json +8 -2
  41. package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +1 -1
  42. package/build/contracts/bridge/Deposit.sol/Deposit.json +2 -2
  43. package/build/contracts/bridge/DepositSweep.sol/DepositSweep.dbg.json +1 -1
  44. package/build/contracts/bridge/DepositSweep.sol/DepositSweep.json +2 -2
  45. package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +1 -1
  46. package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +1 -1
  47. package/build/contracts/bridge/Fraud.sol/Fraud.json +2 -2
  48. package/build/contracts/bridge/Heartbeat.sol/Heartbeat.dbg.json +1 -1
  49. package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +1 -1
  50. package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +1 -1
  51. package/build/contracts/bridge/MovingFunds.sol/MovingFunds.json +2 -2
  52. package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +1 -1
  53. package/build/contracts/bridge/Redemption.sol/OutboundTx.json +2 -2
  54. package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +1 -1
  55. package/build/contracts/bridge/Redemption.sol/Redemption.json +2 -2
  56. package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
  57. package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +1 -1
  58. package/build/contracts/bridge/Wallets.sol/Wallets.json +2 -2
  59. package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
  60. package/build/contracts/vault/DonationVault.sol/DonationVault.dbg.json +1 -1
  61. package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
  62. package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
  63. package/contracts/bridge/Bridge.sol +30 -6
  64. package/contracts/bridge/BridgeState.sol +33 -7
  65. package/contracts/bridge/MovingFunds.sol +10 -1
  66. package/contracts/hardhat-dependency-compiler/@keep-network/ecdsa/contracts/WalletRegistry.sol +3 -0
  67. package/deploy/05_deploy_bridge.ts +5 -1
  68. package/deploy/09_transfer_proxy_admin_ownership.ts +15 -8
  69. package/export.json +2539 -3070
  70. package/package.json +3 -3
  71. package/artifacts/DefaultProxyAdmin.json +0 -259
  72. package/artifacts/SortitionPool.json +0 -1005
  73. package/artifacts/WalletRegistry_Implementation.json +0 -2824
  74. package/artifacts/WalletRegistry_Proxy.json +0 -259
  75. package/artifacts/solcInputs/1635d55d57a0a2552952c0d22586ed23.json +0 -56
  76. package/deploy/00_resolve_wallet_registry.ts +0 -83
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../build-info/5fe791a361cf1b2ad5c19e744c13ada0.json"
3
+ "buildInfo": "../../build-info/29c1131c63951aff16aa5e5ffba1c125.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5fe791a361cf1b2ad5c19e744c13ada0.json"
3
+ "buildInfo": "../../../build-info/29c1131c63951aff16aa5e5ffba1c125.json"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/5fe791a361cf1b2ad5c19e744c13ada0.json"
3
+ "buildInfo": "../../../build-info/29c1131c63951aff16aa5e5ffba1c125.json"
4
4
  }
@@ -3,8 +3,8 @@
3
3
  "contractName": "BitcoinTx",
4
4
  "sourceName": "contracts/bridge/BitcoinTx.sol",
5
5
  "abi": [],
6
- "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212205b45d6ef300b8bb45bf123d211e282e872ded1af78737a091d743068d4a4944c64736f6c63430008090033",
7
- "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212205b45d6ef300b8bb45bf123d211e282e872ded1af78737a091d743068d4a4944c64736f6c63430008090033",
6
+ "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220bdc535feefef752c8bafeb277f875d3f87a7a876fd80fe2466c305ccad86e98164736f6c63430008090033",
7
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220bdc535feefef752c8bafeb277f875d3f87a7a876fd80fe2466c305ccad86e98164736f6c63430008090033",
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/5fe791a361cf1b2ad5c19e744c13ada0.json"
3
+ "buildInfo": "../../../build-info/29c1131c63951aff16aa5e5ffba1c125.json"
4
4
  }