@keep-network/tbtc-v2 1.7.0 → 1.8.0-dev.0

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 (215) hide show
  1. package/artifacts/.chainId +1 -1
  2. package/artifacts/BLS.json +223 -0
  3. package/artifacts/Bank.json +50 -40
  4. package/artifacts/BeaconAuthorization.json +273 -0
  5. package/artifacts/BeaconDkg.json +241 -0
  6. package/artifacts/BeaconDkgValidator.json +501 -0
  7. package/artifacts/BeaconInactivity.json +151 -0
  8. package/artifacts/BeaconSortitionPool.json +1187 -0
  9. package/artifacts/Bridge.json +449 -32
  10. package/artifacts/BridgeGovernance.json +22 -22
  11. package/artifacts/BridgeGovernanceParameters.json +10 -10
  12. package/artifacts/Deposit.json +12 -12
  13. package/artifacts/DepositSweep.json +12 -12
  14. package/artifacts/DonationVault.json +17 -17
  15. package/artifacts/EcdsaDkgValidator.json +517 -0
  16. package/artifacts/EcdsaInactivity.json +156 -0
  17. package/artifacts/EcdsaSortitionPool.json +1187 -0
  18. package/artifacts/Fraud.json +12 -12
  19. package/artifacts/KeepRegistry.json +99 -0
  20. package/artifacts/KeepStake.json +286 -0
  21. package/artifacts/KeepToken.json +711 -0
  22. package/artifacts/KeepTokenStaking.json +483 -0
  23. package/artifacts/LightRelay.json +38 -38
  24. package/artifacts/LightRelayMaintainerProxy.json +31 -31
  25. package/artifacts/MaintainerProxy.json +48 -48
  26. package/artifacts/MovingFunds.json +12 -12
  27. package/artifacts/NuCypherStakingEscrow.json +287 -0
  28. package/artifacts/NuCypherToken.json +711 -0
  29. package/artifacts/RandomBeacon.json +3271 -0
  30. package/artifacts/RandomBeaconChaosnet.json +252 -0
  31. package/artifacts/RandomBeaconGovernance.json +3499 -0
  32. package/artifacts/Redemption.json +12 -12
  33. package/artifacts/RedemptionWatchtower.json +39 -39
  34. package/artifacts/ReimbursementPool.json +509 -0
  35. package/artifacts/T.json +1148 -0
  36. package/artifacts/TBTC.json +37 -36
  37. package/artifacts/TBTCToken.json +738 -0
  38. package/artifacts/TBTCVault.json +47 -47
  39. package/artifacts/Timelock.json +148 -148
  40. package/artifacts/TokenStaking.json +2269 -0
  41. package/artifacts/TokenholderGovernor.json +1795 -0
  42. package/artifacts/TokenholderTimelock.json +1058 -0
  43. package/artifacts/VendingMachine.json +35 -34
  44. package/artifacts/VendingMachineKeep.json +400 -0
  45. package/artifacts/VendingMachineNuCypher.json +400 -0
  46. package/artifacts/VendingMachineV2.json +21 -21
  47. package/artifacts/VendingMachineV3.json +21 -21
  48. package/artifacts/WalletProposalValidator.json +12 -12
  49. package/artifacts/WalletRegistry.json +1962 -0
  50. package/artifacts/WalletRegistryGovernance.json +2863 -0
  51. package/artifacts/Wallets.json +12 -12
  52. package/artifacts/solcInputs/{be146ce112252bdda3a03de3614fbbf1.json → fe0eebcebee1dc423b54e929e5519304.json} +31 -7
  53. package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
  54. package/build/contracts/Timelock.sol/Timelock.dbg.json +1 -1
  55. package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
  56. package/build/contracts/bank/IReceiveBalanceApproval.sol/IReceiveBalanceApproval.dbg.json +1 -1
  57. package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +1 -1
  58. package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
  59. package/build/contracts/bridge/BridgeGovernanceParameters.sol/BridgeGovernanceParameters.dbg.json +1 -1
  60. package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +1 -1
  61. package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +1 -1
  62. package/build/contracts/bridge/DepositSweep.sol/DepositSweep.dbg.json +1 -1
  63. package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +1 -1
  64. package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +1 -1
  65. package/build/contracts/bridge/Heartbeat.sol/Heartbeat.dbg.json +1 -1
  66. package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +1 -1
  67. package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +1 -1
  68. package/build/contracts/bridge/Redemption.sol/IRedemptionWatchtower.dbg.json +1 -1
  69. package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +1 -1
  70. package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +1 -1
  71. package/build/contracts/bridge/RedemptionWatchtower.sol/RedemptionWatchtower.dbg.json +1 -1
  72. package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
  73. package/build/contracts/bridge/VendingMachineV2.sol/VendingMachineV2.dbg.json +1 -1
  74. package/build/contracts/bridge/VendingMachineV3.sol/VendingMachineV3.dbg.json +1 -1
  75. package/build/contracts/bridge/WalletProposalValidator.sol/WalletProposalValidator.dbg.json +1 -1
  76. package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +1 -1
  77. package/build/contracts/integrator/AbstractTBTCDepositor.sol/AbstractTBTCDepositor.dbg.json +1 -1
  78. package/build/contracts/integrator/IBridge.sol/IBridge.dbg.json +1 -1
  79. package/build/contracts/integrator/IBridge.sol/IBridgeTypes.dbg.json +1 -1
  80. package/build/contracts/integrator/ITBTCVault.sol/ITBTCVault.dbg.json +1 -1
  81. package/build/contracts/l2/L1BitcoinDepositor.sol/L1BitcoinDepositor.dbg.json +1 -1
  82. package/build/contracts/l2/L1BitcoinDepositor.sol/L1BitcoinDepositor.json +41 -2
  83. package/build/contracts/l2/L2BitcoinDepositor.sol/IL2WormholeGateway.dbg.json +1 -1
  84. package/build/contracts/l2/L2BitcoinDepositor.sol/L2BitcoinDepositor.dbg.json +1 -1
  85. package/build/contracts/l2/L2TBTC.sol/L2TBTC.dbg.json +1 -1
  86. package/build/contracts/l2/L2WormholeGateway.sol/L2WormholeGateway.dbg.json +1 -1
  87. package/build/contracts/l2/Wormhole.sol/IWormhole.dbg.json +1 -1
  88. package/build/contracts/l2/Wormhole.sol/IWormholeReceiver.dbg.json +1 -1
  89. package/build/contracts/l2/Wormhole.sol/IWormholeRelayer.dbg.json +1 -1
  90. package/build/contracts/l2/Wormhole.sol/IWormholeTokenBridge.dbg.json +1 -1
  91. package/build/contracts/l2/Wormhole.sol/WormholeTypes.dbg.json +1 -1
  92. package/build/contracts/l2/Wormhole.sol/WormholeUtils.dbg.json +1 -1
  93. package/build/contracts/maintainer/MaintainerProxy.sol/MaintainerProxy.dbg.json +1 -1
  94. package/build/contracts/relay/LightRelay.sol/ILightRelay.dbg.json +1 -1
  95. package/build/contracts/relay/LightRelay.sol/LightRelay.dbg.json +1 -1
  96. package/build/contracts/relay/LightRelay.sol/RelayUtils.dbg.json +1 -1
  97. package/build/contracts/relay/LightRelayMaintainerProxy.sol/LightRelayMaintainerProxy.dbg.json +1 -1
  98. package/build/contracts/test/BankStub.sol/BankStub.dbg.json +1 -1
  99. package/build/contracts/test/BridgeStub.sol/BridgeStub.dbg.json +1 -1
  100. package/build/contracts/test/HeartbeatStub.sol/HeartbeatStub.dbg.json +1 -1
  101. package/build/contracts/test/LightRelayStub.sol/LightRelayStub.dbg.json +1 -1
  102. package/build/contracts/test/ReceiveApprovalStub.sol/ReceiveApprovalStub.dbg.json +1 -1
  103. package/build/contracts/test/SepoliaLightRelay.sol/SepoliaLightRelay.dbg.json +1 -1
  104. package/build/contracts/test/SystemTestRelay.sol/SystemTestRelay.dbg.json +1 -1
  105. package/build/contracts/test/TestBitcoinTx.sol/TestBitcoinTx.dbg.json +1 -1
  106. package/build/contracts/test/TestERC20.sol/TestERC20.dbg.json +1 -1
  107. package/build/contracts/test/TestERC721.sol/TestERC721.dbg.json +1 -1
  108. package/build/contracts/test/TestEcdsaLib.sol/TestEcdsaLib.dbg.json +1 -1
  109. package/build/contracts/test/TestTBTCDepositor.sol/MockBridge.dbg.json +1 -1
  110. package/build/contracts/test/TestTBTCDepositor.sol/MockTBTCVault.dbg.json +1 -1
  111. package/build/contracts/test/TestTBTCDepositor.sol/TestTBTCDepositor.dbg.json +1 -1
  112. package/build/contracts/test/WormholeBridgeStub.sol/WormholeBridgeStub.dbg.json +1 -1
  113. package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
  114. package/build/contracts/vault/DonationVault.sol/DonationVault.dbg.json +1 -1
  115. package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
  116. package/build/contracts/vault/TBTCOptimisticMinting.sol/TBTCOptimisticMinting.dbg.json +1 -1
  117. package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
  118. package/contracts/l2/L1BitcoinDepositor.sol +31 -0
  119. package/export/artifacts/contracts/bridge/VendingMachine.sol/VendingMachine.json +6 -6
  120. package/export/artifacts/contracts/bridge/VendingMachineV2.sol/VendingMachineV2.json +6 -6
  121. package/export/artifacts/contracts/bridge/VendingMachineV3.sol/VendingMachineV3.json +6 -6
  122. package/export/artifacts/contracts/l2/L1BitcoinDepositor.sol/L1BitcoinDepositor.json +4288 -4028
  123. package/export/artifacts/contracts/l2/L2BitcoinDepositor.sol/L2BitcoinDepositor.json +33 -33
  124. package/export/artifacts/contracts/l2/L2TBTC.sol/L2TBTC.json +40 -40
  125. package/export/artifacts/contracts/l2/L2WormholeGateway.sol/L2WormholeGateway.json +51 -51
  126. package/export/artifacts/contracts/maintainer/MaintainerProxy.sol/MaintainerProxy.json +88 -88
  127. package/export/artifacts/contracts/relay/LightRelay.sol/LightRelay.json +57 -57
  128. package/export/artifacts/contracts/relay/LightRelayMaintainerProxy.sol/LightRelayMaintainerProxy.json +31 -31
  129. package/export/artifacts/contracts/test/BankStub.sol/BankStub.json +2 -2
  130. package/export/artifacts/contracts/test/BridgeStub.sol/BridgeStub.json +30 -30
  131. package/export/artifacts/contracts/test/HeartbeatStub.sol/HeartbeatStub.json +2 -2
  132. package/export/artifacts/contracts/test/LightRelayStub.sol/LightRelayStub.json +59 -59
  133. package/export/artifacts/contracts/test/ReceiveApprovalStub.sol/ReceiveApprovalStub.json +7 -7
  134. package/export/artifacts/contracts/test/SepoliaLightRelay.sol/SepoliaLightRelay.json +59 -59
  135. package/export/artifacts/contracts/test/SystemTestRelay.sol/SystemTestRelay.json +14 -14
  136. package/export/artifacts/contracts/test/TestBitcoinTx.sol/TestBitcoinTx.json +5 -5
  137. package/export/artifacts/contracts/test/TestERC20.sol/TestERC20.json +6 -6
  138. package/export/artifacts/contracts/test/TestERC721.sol/TestERC721.json +8 -8
  139. package/export/artifacts/contracts/test/TestEcdsaLib.sol/TestEcdsaLib.json +2 -2
  140. package/export/artifacts/contracts/test/TestTBTCDepositor.sol/MockBridge.json +18 -18
  141. package/export/artifacts/contracts/test/TestTBTCDepositor.sol/MockTBTCVault.json +20 -20
  142. package/export/artifacts/contracts/test/TestTBTCDepositor.sol/TestTBTCDepositor.json +10 -10
  143. package/export/artifacts/contracts/test/WormholeBridgeStub.sol/WormholeBridgeStub.json +37 -37
  144. package/export/artifacts/contracts/token/TBTC.sol/TBTC.json +2 -2
  145. package/export/artifacts/contracts/vault/DonationVault.sol/DonationVault.json +11 -11
  146. package/export/artifacts/contracts/vault/TBTCVault.sol/TBTCVault.json +135 -135
  147. package/export/typechain/factories/L1BitcoinDepositor__factory.js +40 -1
  148. package/package.json +1 -1
  149. package/artifacts/solcInputs/7c1f8f1dbded4c787d87a982d1fc8349.json +0 -410
  150. package/artifacts/solcInputs/7cc3eda3cb3ff2522d18b5e7b31ea228.json +0 -102
  151. package/artifacts/solcInputs/802132f7da69a8a4226cb9424480847b.json +0 -218
  152. package/artifacts/solcInputs/887fad6b16575ba42183543c324eeb0e.json +0 -335
  153. package/artifacts/solcInputs/98e272e2fbf178ec895387b6c503f9de.json +0 -68
  154. package/artifacts/solcInputs/b0025f1f7efe4824592ac0c9793776c3.json +0 -392
  155. package/artifacts/solcInputs/b7c5f3550cc22e16e6b6ea9582ccbee3.json +0 -341
  156. package/artifacts/solcInputs/d71d4b4434e6669852eaf643ebd2a7bc.json +0 -209
  157. package/artifacts/solcInputs/fccb130292c8c7cc958ab4fa31a3e180.json +0 -187
  158. package/export/deploy/00_resolve_relay.js +0 -83
  159. package/export/deploy/01_deploy_tbtc_v2_token.js +0 -70
  160. package/export/deploy/02_deploy_vending_machine.js +0 -84
  161. package/export/deploy/03_transfer_vending_machine_roles.js +0 -69
  162. package/export/deploy/04_deploy_bank.js +0 -73
  163. package/export/deploy/05_deploy_bridge.js +0 -178
  164. package/export/deploy/06_deploy_tbtc_vault.js +0 -80
  165. package/export/deploy/07_deploy_bridge_governance.js +0 -87
  166. package/export/deploy/08_deploy_maintainer_proxy.js +0 -80
  167. package/export/deploy/09_bank_update_bridge.js +0 -63
  168. package/export/deploy/10_authorize_spv_maintainer_in_bridge.js +0 -61
  169. package/export/deploy/11_transfer_bank_ownership.js +0 -60
  170. package/export/deploy/12_transfer_bridge_governance.js +0 -63
  171. package/export/deploy/13_transfer_bridge_governance_ownership.js +0 -60
  172. package/export/deploy/14_transfer_tbtc_vault_ownership.js +0 -60
  173. package/export/deploy/15_transfer_maintainer_proxy_ownership.js +0 -60
  174. package/export/deploy/16_initialize_wallet_owner.js +0 -63
  175. package/export/deploy/16_transfer_proxy_admin_ownership.js +0 -73
  176. package/export/deploy/17_authorize_maintainer_proxy_in_bridge.js +0 -63
  177. package/export/deploy/17_transfer_proxy_admin_ownership.js +0 -73
  178. package/export/deploy/18_authorize_maintainer_proxy_in_bridge.js +0 -63
  179. package/export/deploy/18_authorize_maintainer_proxy_in_reimbursement_pool.js +0 -63
  180. package/export/deploy/19_authorize_bridge_in_reimbursement_pool.js +0 -63
  181. package/export/deploy/19_authorize_maintainer_proxy_in_reimbursement_pool.js +0 -63
  182. package/export/deploy/20_authorize_bridge_in_reimbursement_pool.js +0 -63
  183. package/export/deploy/20_deploy_proxy_admin_with_deputy.js +0 -80
  184. package/export/deploy/21_transfer_reimbursement_pool_ownership.js +0 -60
  185. package/export/deploy/22_deploy_proxy_admin_with_deputy.js +0 -80
  186. package/export/deploy/24_transfer_maintainer_proxy_ownership.js +0 -60
  187. package/export/deploy/25_transfer_proxy_admin_ownership.js +0 -73
  188. package/export/deploy/26_authorize_maintainer_proxy_in_reimbursement_pool.js +0 -70
  189. package/export/deploy/27_authorize_bridge_in_reimbursement_pool.js +0 -70
  190. package/export/deploy/28_deploy_proxy_admin_with_deputy.js +0 -80
  191. package/export/deploy/34_deploy_wallet_coordinator.js +0 -115
  192. package/export/deploy/35_add_coordinator_address.js +0 -60
  193. package/export/deploy/35_transfer_wallet_coordinator_ownership.js +0 -60
  194. package/export/deploy/36_deploy_light_relay_maintainer_proxy.js +0 -86
  195. package/export/deploy/36_transfer_wallet_coordinator_ownership.js +0 -60
  196. package/export/deploy/37_authorize_maintainer_in_light_relay_maintainer_proxy.js +0 -65
  197. package/export/deploy/37_deploy_light_relay_maintainer_proxy.js +0 -86
  198. package/export/deploy/37_transfer_light_relay_maintainer_proxy_ownership.js +0 -60
  199. package/export/deploy/38_authorize_light_relay_maintainer_proxy_in_reimbursement_pool.js +0 -70
  200. package/export/deploy/38_authorize_maintainer_in_light_relay_maintainer_proxy.js +0 -65
  201. package/export/deploy/38_transfer_light_relay_maintainer_proxy_ownership.js +0 -60
  202. package/export/deploy/39_authorize_light_relay_maintainer_proxy_in_light_relay.js +0 -63
  203. package/export/deploy/39_authorize_light_relay_maintainer_proxy_in_reimbursement_pool.js +0 -70
  204. package/export/deploy/39_transfer_light_relay_maintainer_proxy_ownership.js +0 -60
  205. package/export/deploy/40_authorize_light_relay_maintainer_proxy_in_light_relay.js +0 -66
  206. package/export/deploy/40_authorize_light_relay_maintainer_proxy_in_reimbursement_pool.js +0 -70
  207. package/export/deploy/41_authorize_light_relay_maintainer_proxy_in_light_relay.js +0 -66
  208. package/export/typechain/GoerliLightRelay.js +0 -2
  209. package/export/typechain/RelayStub.js +0 -2
  210. package/export/typechain/TestRelay.js +0 -2
  211. package/export/typechain/WalletCoordinator.js +0 -2
  212. package/export/typechain/factories/GoerliLightRelay__factory.js +0 -535
  213. package/export/typechain/factories/RelayStub__factory.js +0 -546
  214. package/export/typechain/factories/TestRelay__factory.js +0 -168
  215. package/export/typechain/factories/WalletCoordinator__factory.js +0 -1121
@@ -1,63 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __generator = (this && this.__generator) || function (thisArg, body) {
12
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
- function verb(n) { return function (v) { return step([n, v]); }; }
15
- function step(op) {
16
- if (f) throw new TypeError("Generator is already executing.");
17
- while (_) try {
18
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
- if (y = 0, t) op = [op[0] & 2, t.value];
20
- switch (op[0]) {
21
- case 0: case 1: t = op; break;
22
- case 4: _.label++; return { value: op[1], done: false };
23
- case 5: _.label++; y = op[1]; op = [0]; continue;
24
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
- default:
26
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
- if (t[2]) _.ops.pop();
31
- _.trys.pop(); continue;
32
- }
33
- op = body.call(thisArg, _);
34
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
- }
37
- };
38
- var __importDefault = (this && this.__importDefault) || function (mod) {
39
- return (mod && mod.__esModule) ? mod : { "default": mod };
40
- };
41
- Object.defineProperty(exports, "__esModule", { value: true });
42
- var initialize_wallet_owner_1 = __importDefault(require("@keep-network/ecdsa/export/tasks/initialize-wallet-owner"));
43
- var func = function (hre) { return __awaiter(void 0, void 0, void 0, function () {
44
- var Bridge;
45
- return __generator(this, function (_a) {
46
- switch (_a.label) {
47
- case 0: return [4 /*yield*/, hre.deployments.get("Bridge")];
48
- case 1:
49
- Bridge = _a.sent();
50
- hre.deployments.log("initializing Bridge as ECDSA wallet owner");
51
- return [4 /*yield*/, (0, initialize_wallet_owner_1.default)(hre, Bridge.address)];
52
- case 2:
53
- _a.sent();
54
- return [2 /*return*/];
55
- }
56
- });
57
- }); };
58
- exports.default = func;
59
- func.tags = ["InitializeWalletOwner"];
60
- func.dependencies = ["Bridge"];
61
- func.skip = function (hre) { return __awaiter(void 0, void 0, void 0, function () { return __generator(this, function (_a) {
62
- return [2 /*return*/, hre.network.name === "mainnet"];
63
- }); }); };
@@ -1,73 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __generator = (this && this.__generator) || function (thisArg, body) {
12
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
- function verb(n) { return function (v) { return step([n, v]); }; }
15
- function step(op) {
16
- if (f) throw new TypeError("Generator is already executing.");
17
- while (_) try {
18
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
- if (y = 0, t) op = [op[0] & 2, t.value];
20
- switch (op[0]) {
21
- case 0: case 1: t = op; break;
22
- case 4: _.label++; return { value: op[1], done: false };
23
- case 5: _.label++; y = op[1]; op = [0]; continue;
24
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
- default:
26
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
- if (t[2]) _.ops.pop();
31
- _.trys.pop(); continue;
32
- }
33
- op = body.call(thisArg, _);
34
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
- }
37
- };
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- var func = function (hre) { return __awaiter(void 0, void 0, void 0, function () {
40
- var helpers, upgrades, deployments, _a, esdm, deployer, log, newProxyAdminOwner, proxyAdmin, currentOwner;
41
- return __generator(this, function (_b) {
42
- switch (_b.label) {
43
- case 0:
44
- helpers = hre.helpers, upgrades = hre.upgrades, deployments = hre.deployments;
45
- return [4 /*yield*/, helpers.signers.getNamedSigners()];
46
- case 1:
47
- _a = _b.sent(), esdm = _a.esdm, deployer = _a.deployer;
48
- log = deployments.log;
49
- newProxyAdminOwner = esdm.address;
50
- return [4 /*yield*/, upgrades.admin.getInstance()];
51
- case 2:
52
- proxyAdmin = _b.sent();
53
- return [4 /*yield*/, proxyAdmin.owner()
54
- // The `@openzeppelin/hardhat-upgrades` plugin deploys a single ProxyAdmin
55
- // per network. We don't want to transfer the ownership if the owner is already
56
- // set to the desired address.
57
- ];
58
- case 3:
59
- currentOwner = _b.sent();
60
- if (!!helpers.address.equal(currentOwner, newProxyAdminOwner)) return [3 /*break*/, 6];
61
- log("transferring ownership of ProxyAdmin to ".concat(newProxyAdminOwner));
62
- return [4 /*yield*/, proxyAdmin.connect(deployer).transferOwnership(newProxyAdminOwner)];
63
- case 4: return [4 /*yield*/, (_b.sent()).wait()];
64
- case 5:
65
- _b.sent();
66
- _b.label = 6;
67
- case 6: return [2 /*return*/];
68
- }
69
- });
70
- }); };
71
- exports.default = func;
72
- func.tags = ["TransferProxyAdminOwnership"];
73
- func.dependencies = ["Bridge"];
@@ -1,63 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __generator = (this && this.__generator) || function (thisArg, body) {
12
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
- function verb(n) { return function (v) { return step([n, v]); }; }
15
- function step(op) {
16
- if (f) throw new TypeError("Generator is already executing.");
17
- while (_) try {
18
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
- if (y = 0, t) op = [op[0] & 2, t.value];
20
- switch (op[0]) {
21
- case 0: case 1: t = op; break;
22
- case 4: _.label++; return { value: op[1], done: false };
23
- case 5: _.label++; y = op[1]; op = [0]; continue;
24
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
- default:
26
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
- if (t[2]) _.ops.pop();
31
- _.trys.pop(); continue;
32
- }
33
- op = body.call(thisArg, _);
34
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
- }
37
- };
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- var func = function (hre) {
40
- return __awaiter(this, void 0, void 0, function () {
41
- var getNamedAccounts, deployments, execute, deployer, MaintainerProxy;
42
- return __generator(this, function (_a) {
43
- switch (_a.label) {
44
- case 0:
45
- getNamedAccounts = hre.getNamedAccounts, deployments = hre.deployments;
46
- execute = deployments.execute;
47
- return [4 /*yield*/, getNamedAccounts()];
48
- case 1:
49
- deployer = (_a.sent()).deployer;
50
- return [4 /*yield*/, deployments.get("MaintainerProxy")];
51
- case 2:
52
- MaintainerProxy = _a.sent();
53
- return [4 /*yield*/, execute("Bridge", { from: deployer, log: true, waitConfirmations: 1 }, "setSpvMaintainerStatus", MaintainerProxy.address, true)];
54
- case 3:
55
- _a.sent();
56
- return [2 /*return*/];
57
- }
58
- });
59
- });
60
- };
61
- exports.default = func;
62
- func.tags = ["AuthorizeMaintainerProxyInBridge"];
63
- func.dependencies = ["Bridge", "MaintainerProxy"];
@@ -1,73 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __generator = (this && this.__generator) || function (thisArg, body) {
12
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
- function verb(n) { return function (v) { return step([n, v]); }; }
15
- function step(op) {
16
- if (f) throw new TypeError("Generator is already executing.");
17
- while (_) try {
18
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
- if (y = 0, t) op = [op[0] & 2, t.value];
20
- switch (op[0]) {
21
- case 0: case 1: t = op; break;
22
- case 4: _.label++; return { value: op[1], done: false };
23
- case 5: _.label++; y = op[1]; op = [0]; continue;
24
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
- default:
26
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
- if (t[2]) _.ops.pop();
31
- _.trys.pop(); continue;
32
- }
33
- op = body.call(thisArg, _);
34
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
- }
37
- };
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- var func = function (hre) { return __awaiter(void 0, void 0, void 0, function () {
40
- var helpers, upgrades, deployments, _a, esdm, deployer, log, newProxyAdminOwner, proxyAdmin, currentOwner;
41
- return __generator(this, function (_b) {
42
- switch (_b.label) {
43
- case 0:
44
- helpers = hre.helpers, upgrades = hre.upgrades, deployments = hre.deployments;
45
- return [4 /*yield*/, helpers.signers.getNamedSigners()];
46
- case 1:
47
- _a = _b.sent(), esdm = _a.esdm, deployer = _a.deployer;
48
- log = deployments.log;
49
- newProxyAdminOwner = esdm.address;
50
- return [4 /*yield*/, upgrades.admin.getInstance()];
51
- case 2:
52
- proxyAdmin = _b.sent();
53
- return [4 /*yield*/, proxyAdmin.owner()
54
- // The `@openzeppelin/hardhat-upgrades` plugin deploys a single ProxyAdmin
55
- // per network. We don't want to transfer the ownership if the owner is already
56
- // set to the desired address.
57
- ];
58
- case 3:
59
- currentOwner = _b.sent();
60
- if (!!helpers.address.equal(currentOwner, newProxyAdminOwner)) return [3 /*break*/, 6];
61
- log("transferring ownership of ProxyAdmin to ".concat(newProxyAdminOwner));
62
- return [4 /*yield*/, proxyAdmin.connect(deployer).transferOwnership(newProxyAdminOwner)];
63
- case 4: return [4 /*yield*/, (_b.sent()).wait()];
64
- case 5:
65
- _b.sent();
66
- _b.label = 6;
67
- case 6: return [2 /*return*/];
68
- }
69
- });
70
- }); };
71
- exports.default = func;
72
- func.tags = ["TransferProxyAdminOwnership"];
73
- func.dependencies = ["Bridge"];
@@ -1,63 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __generator = (this && this.__generator) || function (thisArg, body) {
12
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
- function verb(n) { return function (v) { return step([n, v]); }; }
15
- function step(op) {
16
- if (f) throw new TypeError("Generator is already executing.");
17
- while (_) try {
18
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
- if (y = 0, t) op = [op[0] & 2, t.value];
20
- switch (op[0]) {
21
- case 0: case 1: t = op; break;
22
- case 4: _.label++; return { value: op[1], done: false };
23
- case 5: _.label++; y = op[1]; op = [0]; continue;
24
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
- default:
26
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
- if (t[2]) _.ops.pop();
31
- _.trys.pop(); continue;
32
- }
33
- op = body.call(thisArg, _);
34
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
- }
37
- };
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- var func = function (hre) {
40
- return __awaiter(this, void 0, void 0, function () {
41
- var getNamedAccounts, deployments, execute, deployer, MaintainerProxy;
42
- return __generator(this, function (_a) {
43
- switch (_a.label) {
44
- case 0:
45
- getNamedAccounts = hre.getNamedAccounts, deployments = hre.deployments;
46
- execute = deployments.execute;
47
- return [4 /*yield*/, getNamedAccounts()];
48
- case 1:
49
- deployer = (_a.sent()).deployer;
50
- return [4 /*yield*/, deployments.get("MaintainerProxy")];
51
- case 2:
52
- MaintainerProxy = _a.sent();
53
- return [4 /*yield*/, execute("Bridge", { from: deployer, log: true, waitConfirmations: 1 }, "setSpvMaintainerStatus", MaintainerProxy.address, true)];
54
- case 3:
55
- _a.sent();
56
- return [2 /*return*/];
57
- }
58
- });
59
- });
60
- };
61
- exports.default = func;
62
- func.tags = ["AuthorizeMaintainerProxyInBridge"];
63
- func.dependencies = ["Bridge", "MaintainerProxy"];
@@ -1,63 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __generator = (this && this.__generator) || function (thisArg, body) {
12
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
- function verb(n) { return function (v) { return step([n, v]); }; }
15
- function step(op) {
16
- if (f) throw new TypeError("Generator is already executing.");
17
- while (_) try {
18
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
- if (y = 0, t) op = [op[0] & 2, t.value];
20
- switch (op[0]) {
21
- case 0: case 1: t = op; break;
22
- case 4: _.label++; return { value: op[1], done: false };
23
- case 5: _.label++; y = op[1]; op = [0]; continue;
24
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
- default:
26
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
- if (t[2]) _.ops.pop();
31
- _.trys.pop(); continue;
32
- }
33
- op = body.call(thisArg, _);
34
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
- }
37
- };
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- var func = function (hre) {
40
- return __awaiter(this, void 0, void 0, function () {
41
- var getNamedAccounts, deployments, execute, governance, MaintainerProxy;
42
- return __generator(this, function (_a) {
43
- switch (_a.label) {
44
- case 0:
45
- getNamedAccounts = hre.getNamedAccounts, deployments = hre.deployments;
46
- execute = deployments.execute;
47
- return [4 /*yield*/, getNamedAccounts()];
48
- case 1:
49
- governance = (_a.sent()).governance;
50
- return [4 /*yield*/, deployments.get("MaintainerProxy")];
51
- case 2:
52
- MaintainerProxy = _a.sent();
53
- return [4 /*yield*/, execute("ReimbursementPool", { from: governance, log: true, waitConfirmations: 1 }, "authorize", MaintainerProxy.address)];
54
- case 3:
55
- _a.sent();
56
- return [2 /*return*/];
57
- }
58
- });
59
- });
60
- };
61
- exports.default = func;
62
- func.tags = ["AuthorizeMaintainerProxyInReimbursementPool"];
63
- func.dependencies = ["ReimbursementPool", "MaintainerProxy"];
@@ -1,63 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __generator = (this && this.__generator) || function (thisArg, body) {
12
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
- function verb(n) { return function (v) { return step([n, v]); }; }
15
- function step(op) {
16
- if (f) throw new TypeError("Generator is already executing.");
17
- while (_) try {
18
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
- if (y = 0, t) op = [op[0] & 2, t.value];
20
- switch (op[0]) {
21
- case 0: case 1: t = op; break;
22
- case 4: _.label++; return { value: op[1], done: false };
23
- case 5: _.label++; y = op[1]; op = [0]; continue;
24
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
- default:
26
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
- if (t[2]) _.ops.pop();
31
- _.trys.pop(); continue;
32
- }
33
- op = body.call(thisArg, _);
34
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
- }
37
- };
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- var func = function (hre) {
40
- return __awaiter(this, void 0, void 0, function () {
41
- var getNamedAccounts, deployments, execute, governance, Bridge;
42
- return __generator(this, function (_a) {
43
- switch (_a.label) {
44
- case 0:
45
- getNamedAccounts = hre.getNamedAccounts, deployments = hre.deployments;
46
- execute = deployments.execute;
47
- return [4 /*yield*/, getNamedAccounts()];
48
- case 1:
49
- governance = (_a.sent()).governance;
50
- return [4 /*yield*/, deployments.get("Bridge")];
51
- case 2:
52
- Bridge = _a.sent();
53
- return [4 /*yield*/, execute("ReimbursementPool", { from: governance, log: true, waitConfirmations: 1 }, "authorize", Bridge.address)];
54
- case 3:
55
- _a.sent();
56
- return [2 /*return*/];
57
- }
58
- });
59
- });
60
- };
61
- exports.default = func;
62
- func.tags = ["AuthorizeBridgeInReimbursementPool"];
63
- func.dependencies = ["ReimbursementPool", "Bridge"];
@@ -1,63 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __generator = (this && this.__generator) || function (thisArg, body) {
12
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
- function verb(n) { return function (v) { return step([n, v]); }; }
15
- function step(op) {
16
- if (f) throw new TypeError("Generator is already executing.");
17
- while (_) try {
18
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
- if (y = 0, t) op = [op[0] & 2, t.value];
20
- switch (op[0]) {
21
- case 0: case 1: t = op; break;
22
- case 4: _.label++; return { value: op[1], done: false };
23
- case 5: _.label++; y = op[1]; op = [0]; continue;
24
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
- default:
26
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
- if (t[2]) _.ops.pop();
31
- _.trys.pop(); continue;
32
- }
33
- op = body.call(thisArg, _);
34
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
- }
37
- };
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- var func = function (hre) {
40
- return __awaiter(this, void 0, void 0, function () {
41
- var getNamedAccounts, deployments, execute, deployer, MaintainerProxy;
42
- return __generator(this, function (_a) {
43
- switch (_a.label) {
44
- case 0:
45
- getNamedAccounts = hre.getNamedAccounts, deployments = hre.deployments;
46
- execute = deployments.execute;
47
- return [4 /*yield*/, getNamedAccounts()];
48
- case 1:
49
- deployer = (_a.sent()).deployer;
50
- return [4 /*yield*/, deployments.get("MaintainerProxy")];
51
- case 2:
52
- MaintainerProxy = _a.sent();
53
- return [4 /*yield*/, execute("ReimbursementPool", { from: deployer, log: true, waitConfirmations: 1 }, "authorize", MaintainerProxy.address)];
54
- case 3:
55
- _a.sent();
56
- return [2 /*return*/];
57
- }
58
- });
59
- });
60
- };
61
- exports.default = func;
62
- func.tags = ["AuthorizeMaintainerProxyInReimbursementPool"];
63
- func.dependencies = ["ReimbursementPool", "MaintainerProxy"];
@@ -1,63 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __generator = (this && this.__generator) || function (thisArg, body) {
12
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
- function verb(n) { return function (v) { return step([n, v]); }; }
15
- function step(op) {
16
- if (f) throw new TypeError("Generator is already executing.");
17
- while (_) try {
18
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
- if (y = 0, t) op = [op[0] & 2, t.value];
20
- switch (op[0]) {
21
- case 0: case 1: t = op; break;
22
- case 4: _.label++; return { value: op[1], done: false };
23
- case 5: _.label++; y = op[1]; op = [0]; continue;
24
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
- default:
26
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
- if (t[2]) _.ops.pop();
31
- _.trys.pop(); continue;
32
- }
33
- op = body.call(thisArg, _);
34
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
- }
37
- };
38
- Object.defineProperty(exports, "__esModule", { value: true });
39
- var func = function (hre) {
40
- return __awaiter(this, void 0, void 0, function () {
41
- var getNamedAccounts, deployments, execute, deployer, Bridge;
42
- return __generator(this, function (_a) {
43
- switch (_a.label) {
44
- case 0:
45
- getNamedAccounts = hre.getNamedAccounts, deployments = hre.deployments;
46
- execute = deployments.execute;
47
- return [4 /*yield*/, getNamedAccounts()];
48
- case 1:
49
- deployer = (_a.sent()).deployer;
50
- return [4 /*yield*/, deployments.get("Bridge")];
51
- case 2:
52
- Bridge = _a.sent();
53
- return [4 /*yield*/, execute("ReimbursementPool", { from: deployer, log: true, waitConfirmations: 1 }, "authorize", Bridge.address)];
54
- case 3:
55
- _a.sent();
56
- return [2 /*return*/];
57
- }
58
- });
59
- });
60
- };
61
- exports.default = func;
62
- func.tags = ["AuthorizeBridgeInReimbursementPool"];
63
- func.dependencies = ["ReimbursementPool", "Bridge"];