@arbitrum/nitro-contracts 1.0.3-beta.0 → 1.0.3-beta.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (237) hide show
  1. package/build/contracts/@openzeppelin/contracts/access/Ownable.sol/Ownable.dbg.json +4 -0
  2. package/build/contracts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json +63 -0
  3. package/build/contracts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.dbg.json +4 -0
  4. package/build/contracts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.json +24 -0
  5. package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol/ERC1967Proxy.dbg.json +4 -0
  6. package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol/ERC1967Proxy.json +80 -0
  7. package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.dbg.json +4 -0
  8. package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.json +56 -0
  9. package/build/contracts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.dbg.json +4 -0
  10. package/build/contracts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.json +19 -0
  11. package/build/contracts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.dbg.json +4 -0
  12. package/build/contracts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.json +24 -0
  13. package/build/contracts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.dbg.json +4 -0
  14. package/build/contracts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.json +113 -0
  15. package/build/contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.dbg.json +4 -0
  16. package/build/contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.json +160 -0
  17. package/build/contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.dbg.json +4 -0
  18. package/build/contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +155 -0
  19. package/build/contracts/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol/UUPSUpgradeable.dbg.json +4 -0
  20. package/build/contracts/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol/UUPSUpgradeable.json +100 -0
  21. package/build/contracts/@openzeppelin/contracts/utils/Address.sol/Address.dbg.json +4 -0
  22. package/build/contracts/@openzeppelin/contracts/utils/Address.sol/Address.json +10 -0
  23. package/build/contracts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json +4 -0
  24. package/build/contracts/@openzeppelin/contracts/utils/Context.sol/Context.json +10 -0
  25. package/build/contracts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.dbg.json +4 -0
  26. package/build/contracts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.json +10 -0
  27. package/build/contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json +4 -0
  28. package/build/contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json +63 -0
  29. package/build/contracts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json +4 -0
  30. package/build/contracts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json +10 -0
  31. package/build/contracts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json +4 -0
  32. package/build/contracts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json +50 -0
  33. package/build/contracts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.dbg.json +4 -0
  34. package/build/contracts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.json +194 -0
  35. package/build/contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json +4 -0
  36. package/build/contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json +10 -0
  37. package/build/contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json +4 -0
  38. package/build/contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json +10 -0
  39. package/build/contracts/src/bridge/Bridge.sol/Bridge.dbg.json +4 -0
  40. package/build/contracts/src/bridge/Bridge.sol/Bridge.json +650 -0
  41. package/build/contracts/src/bridge/IBridge.sol/IBridge.dbg.json +4 -0
  42. package/build/contracts/src/bridge/IBridge.sol/IBridge.json +538 -0
  43. package/build/contracts/src/bridge/IDelayedMessageProvider.sol/IDelayedMessageProvider.dbg.json +4 -0
  44. package/build/contracts/src/bridge/IDelayedMessageProvider.sol/IDelayedMessageProvider.json +43 -0
  45. package/build/contracts/src/bridge/IInbox.sol/IInbox.dbg.json +4 -0
  46. package/build/contracts/src/bridge/IInbox.sol/IInbox.json +575 -0
  47. package/build/contracts/src/bridge/IOutbox.sol/IOutbox.dbg.json +4 -0
  48. package/build/contracts/src/bridge/IOutbox.sol/IOutbox.json +419 -0
  49. package/build/contracts/src/bridge/IOwnable.sol/IOwnable.dbg.json +4 -0
  50. package/build/contracts/src/bridge/IOwnable.sol/IOwnable.json +24 -0
  51. package/build/contracts/src/bridge/ISequencerInbox.sol/ISequencerInbox.dbg.json +4 -0
  52. package/build/contracts/src/bridge/ISequencerInbox.sol/ISequencerInbox.json +651 -0
  53. package/build/contracts/src/bridge/Inbox.sol/Inbox.dbg.json +4 -0
  54. package/build/contracts/src/bridge/Inbox.sol/Inbox.json +1008 -0
  55. package/build/contracts/src/bridge/Messages.sol/Messages.dbg.json +4 -0
  56. package/build/contracts/src/bridge/Messages.sol/Messages.json +10 -0
  57. package/build/contracts/src/bridge/Outbox.sol/Outbox.dbg.json +4 -0
  58. package/build/contracts/src/bridge/Outbox.sol/Outbox.json +546 -0
  59. package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.dbg.json +4 -0
  60. package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.json +814 -0
  61. package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.dbg.json +4 -0
  62. package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.json +10 -0
  63. package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.dbg.json +4 -0
  64. package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.json +669 -0
  65. package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.dbg.json +4 -0
  66. package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.json +386 -0
  67. package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.dbg.json +4 -0
  68. package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.json +34 -0
  69. package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.dbg.json +4 -0
  70. package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.json +10 -0
  71. package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.dbg.json +4 -0
  72. package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.json +77 -0
  73. package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.dbg.json +4 -0
  74. package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.json +69 -0
  75. package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.dbg.json +4 -0
  76. package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.json +10 -0
  77. package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.dbg.json +4 -0
  78. package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.json +10 -0
  79. package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.dbg.json +4 -0
  80. package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.json +144 -0
  81. package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.dbg.json +4 -0
  82. package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.json +10 -0
  83. package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.dbg.json +4 -0
  84. package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.json +40 -0
  85. package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.dbg.json +4 -0
  86. package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.json +10 -0
  87. package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.dbg.json +4 -0
  88. package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.json +82 -0
  89. package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.dbg.json +4 -0
  90. package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.json +561 -0
  91. package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.dbg.json +4 -0
  92. package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.json +655 -0
  93. package/build/contracts/src/mocks/InboxStub.sol/InboxStub.dbg.json +4 -0
  94. package/build/contracts/src/mocks/InboxStub.sol/InboxStub.json +588 -0
  95. package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.dbg.json +4 -0
  96. package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.json +188 -0
  97. package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.dbg.json +4 -0
  98. package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.json +160 -0
  99. package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.dbg.json +4 -0
  100. package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.json +870 -0
  101. package/build/contracts/src/mocks/Simple.sol/Simple.dbg.json +4 -0
  102. package/build/contracts/src/mocks/Simple.sol/Simple.json +242 -0
  103. package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.dbg.json +4 -0
  104. package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.json +30 -0
  105. package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.dbg.json +4 -0
  106. package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.json +720 -0
  107. package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.dbg.json +4 -0
  108. package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.json +669 -0
  109. package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.dbg.json +4 -0
  110. package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.json +286 -0
  111. package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.dbg.json +4 -0
  112. package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.json +67 -0
  113. package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.dbg.json +4 -0
  114. package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.json +165 -0
  115. package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.dbg.json +4 -0
  116. package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.json +57 -0
  117. package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.dbg.json +4 -0
  118. package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.json +10 -0
  119. package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.dbg.json +4 -0
  120. package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.json +477 -0
  121. package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.dbg.json +4 -0
  122. package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.json +135 -0
  123. package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.dbg.json +4 -0
  124. package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.json +477 -0
  125. package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.dbg.json +4 -0
  126. package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.json +477 -0
  127. package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.dbg.json +4 -0
  128. package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.json +477 -0
  129. package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.dbg.json +4 -0
  130. package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.json +477 -0
  131. package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.dbg.json +4 -0
  132. package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.json +148 -0
  133. package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.dbg.json +4 -0
  134. package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.json +148 -0
  135. package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.dbg.json +4 -0
  136. package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.json +10 -0
  137. package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.dbg.json +4 -0
  138. package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.json +193 -0
  139. package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.dbg.json +4 -0
  140. package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.json +77 -0
  141. package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.dbg.json +4 -0
  142. package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.json +324 -0
  143. package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.dbg.json +4 -0
  144. package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.json +49 -0
  145. package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.dbg.json +4 -0
  146. package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.json +378 -0
  147. package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.dbg.json +4 -0
  148. package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.json +69 -0
  149. package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.dbg.json +4 -0
  150. package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.json +306 -0
  151. package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.dbg.json +4 -0
  152. package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.json +49 -0
  153. package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.dbg.json +4 -0
  154. package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.json +380 -0
  155. package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.dbg.json +4 -0
  156. package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.json +77 -0
  157. package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.dbg.json +4 -0
  158. package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.json +24 -0
  159. package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.dbg.json +4 -0
  160. package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.json +243 -0
  161. package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.dbg.json +4 -0
  162. package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.json +544 -0
  163. package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.dbg.json +4 -0
  164. package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.json +889 -0
  165. package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.dbg.json +4 -0
  166. package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.json +68 -0
  167. package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.dbg.json +4 -0
  168. package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.json +1428 -0
  169. package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.dbg.json +4 -0
  170. package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.json +1309 -0
  171. package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.dbg.json +4 -0
  172. package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.json +1443 -0
  173. package/build/contracts/src/rollup/Node.sol/NodeLib.dbg.json +4 -0
  174. package/build/contracts/src/rollup/Node.sol/NodeLib.json +10 -0
  175. package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.dbg.json +4 -0
  176. package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.json +1808 -0
  177. package/build/contracts/src/rollup/RollupCore.sol/RollupCore.dbg.json +4 -0
  178. package/build/contracts/src/rollup/RollupCore.sol/RollupCore.json +1051 -0
  179. package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.dbg.json +4 -0
  180. package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.json +343 -0
  181. package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.dbg.json +4 -0
  182. package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.json +110 -0
  183. package/build/contracts/src/rollup/RollupLib.sol/RollupLib.dbg.json +4 -0
  184. package/build/contracts/src/rollup/RollupLib.sol/RollupLib.json +10 -0
  185. package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.dbg.json +4 -0
  186. package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.json +226 -0
  187. package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.dbg.json +4 -0
  188. package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.json +1578 -0
  189. package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.dbg.json +4 -0
  190. package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.json +1712 -0
  191. package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.dbg.json +4 -0
  192. package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.json +1697 -0
  193. package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.dbg.json +4 -0
  194. package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.json +379 -0
  195. package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.dbg.json +4 -0
  196. package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.json +435 -0
  197. package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.dbg.json +4 -0
  198. package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.json +150 -0
  199. package/build/contracts/src/state/Deserialize.sol/Deserialize.dbg.json +4 -0
  200. package/build/contracts/src/state/Deserialize.sol/Deserialize.json +10 -0
  201. package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.dbg.json +4 -0
  202. package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.json +10 -0
  203. package/build/contracts/src/state/Instructions.sol/Instructions.dbg.json +4 -0
  204. package/build/contracts/src/state/Instructions.sol/Instructions.json +10 -0
  205. package/build/contracts/src/state/Machine.sol/MachineLib.dbg.json +4 -0
  206. package/build/contracts/src/state/Machine.sol/MachineLib.json +10 -0
  207. package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.dbg.json +4 -0
  208. package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.json +10 -0
  209. package/build/contracts/src/state/Module.sol/ModuleLib.dbg.json +4 -0
  210. package/build/contracts/src/state/Module.sol/ModuleLib.json +10 -0
  211. package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.dbg.json +4 -0
  212. package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.json +10 -0
  213. package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.dbg.json +4 -0
  214. package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.json +10 -0
  215. package/build/contracts/src/state/PcArray.sol/PcArrayLib.dbg.json +4 -0
  216. package/build/contracts/src/state/PcArray.sol/PcArrayLib.json +10 -0
  217. package/build/contracts/src/state/StackFrame.sol/StackFrameLib.dbg.json +4 -0
  218. package/build/contracts/src/state/StackFrame.sol/StackFrameLib.json +10 -0
  219. package/build/contracts/src/state/Value.sol/ValueLib.dbg.json +4 -0
  220. package/build/contracts/src/state/Value.sol/ValueLib.json +10 -0
  221. package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.dbg.json +4 -0
  222. package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.json +10 -0
  223. package/build/contracts/src/state/ValueStack.sol/ValueStackLib.dbg.json +4 -0
  224. package/build/contracts/src/state/ValueStack.sol/ValueStackLib.json +10 -0
  225. package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.dbg.json +4 -0
  226. package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.json +603 -0
  227. package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.dbg.json +4 -0
  228. package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.json +54 -0
  229. package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.dbg.json +4 -0
  230. package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.json +84 -0
  231. package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.dbg.json +4 -0
  232. package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.json +520 -0
  233. package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.dbg.json +4 -0
  234. package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.json +49 -0
  235. package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.dbg.json +4 -0
  236. package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.json +18 -0
  237. package/package.json +5 -2
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/0dcb6662262cb1f840df82d061862da6.json"
4
+ }
@@ -0,0 +1,386 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IChallengeManager",
4
+ "sourceName": "src/challenge/IChallengeManager.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": true,
11
+ "internalType": "uint64",
12
+ "name": "challengeIndex",
13
+ "type": "uint64"
14
+ },
15
+ {
16
+ "indexed": true,
17
+ "internalType": "bytes32",
18
+ "name": "challengeRoot",
19
+ "type": "bytes32"
20
+ },
21
+ {
22
+ "indexed": false,
23
+ "internalType": "uint256",
24
+ "name": "challengedSegmentStart",
25
+ "type": "uint256"
26
+ },
27
+ {
28
+ "indexed": false,
29
+ "internalType": "uint256",
30
+ "name": "challengedSegmentLength",
31
+ "type": "uint256"
32
+ },
33
+ {
34
+ "indexed": false,
35
+ "internalType": "bytes32[]",
36
+ "name": "chainHashes",
37
+ "type": "bytes32[]"
38
+ }
39
+ ],
40
+ "name": "Bisected",
41
+ "type": "event"
42
+ },
43
+ {
44
+ "anonymous": false,
45
+ "inputs": [
46
+ {
47
+ "indexed": true,
48
+ "internalType": "uint64",
49
+ "name": "challengeIndex",
50
+ "type": "uint64"
51
+ },
52
+ {
53
+ "indexed": false,
54
+ "internalType": "enum IChallengeManager.ChallengeTerminationType",
55
+ "name": "kind",
56
+ "type": "uint8"
57
+ }
58
+ ],
59
+ "name": "ChallengeEnded",
60
+ "type": "event"
61
+ },
62
+ {
63
+ "anonymous": false,
64
+ "inputs": [
65
+ {
66
+ "indexed": true,
67
+ "internalType": "uint64",
68
+ "name": "challengeIndex",
69
+ "type": "uint64"
70
+ },
71
+ {
72
+ "indexed": false,
73
+ "internalType": "uint256",
74
+ "name": "blockSteps",
75
+ "type": "uint256"
76
+ }
77
+ ],
78
+ "name": "ExecutionChallengeBegun",
79
+ "type": "event"
80
+ },
81
+ {
82
+ "anonymous": false,
83
+ "inputs": [
84
+ {
85
+ "indexed": true,
86
+ "internalType": "uint64",
87
+ "name": "challengeIndex",
88
+ "type": "uint64"
89
+ },
90
+ {
91
+ "components": [
92
+ {
93
+ "internalType": "bytes32[2]",
94
+ "name": "bytes32Vals",
95
+ "type": "bytes32[2]"
96
+ },
97
+ {
98
+ "internalType": "uint64[2]",
99
+ "name": "u64Vals",
100
+ "type": "uint64[2]"
101
+ }
102
+ ],
103
+ "indexed": false,
104
+ "internalType": "struct GlobalState",
105
+ "name": "startState",
106
+ "type": "tuple"
107
+ },
108
+ {
109
+ "components": [
110
+ {
111
+ "internalType": "bytes32[2]",
112
+ "name": "bytes32Vals",
113
+ "type": "bytes32[2]"
114
+ },
115
+ {
116
+ "internalType": "uint64[2]",
117
+ "name": "u64Vals",
118
+ "type": "uint64[2]"
119
+ }
120
+ ],
121
+ "indexed": false,
122
+ "internalType": "struct GlobalState",
123
+ "name": "endState",
124
+ "type": "tuple"
125
+ }
126
+ ],
127
+ "name": "InitiatedChallenge",
128
+ "type": "event"
129
+ },
130
+ {
131
+ "anonymous": false,
132
+ "inputs": [
133
+ {
134
+ "indexed": true,
135
+ "internalType": "uint64",
136
+ "name": "challengeIndex",
137
+ "type": "uint64"
138
+ }
139
+ ],
140
+ "name": "OneStepProofCompleted",
141
+ "type": "event"
142
+ },
143
+ {
144
+ "inputs": [
145
+ {
146
+ "internalType": "uint64",
147
+ "name": "challengeIndex_",
148
+ "type": "uint64"
149
+ }
150
+ ],
151
+ "name": "challengeInfo",
152
+ "outputs": [
153
+ {
154
+ "components": [
155
+ {
156
+ "components": [
157
+ {
158
+ "internalType": "address",
159
+ "name": "addr",
160
+ "type": "address"
161
+ },
162
+ {
163
+ "internalType": "uint256",
164
+ "name": "timeLeft",
165
+ "type": "uint256"
166
+ }
167
+ ],
168
+ "internalType": "struct ChallengeLib.Participant",
169
+ "name": "current",
170
+ "type": "tuple"
171
+ },
172
+ {
173
+ "components": [
174
+ {
175
+ "internalType": "address",
176
+ "name": "addr",
177
+ "type": "address"
178
+ },
179
+ {
180
+ "internalType": "uint256",
181
+ "name": "timeLeft",
182
+ "type": "uint256"
183
+ }
184
+ ],
185
+ "internalType": "struct ChallengeLib.Participant",
186
+ "name": "next",
187
+ "type": "tuple"
188
+ },
189
+ {
190
+ "internalType": "uint256",
191
+ "name": "lastMoveTimestamp",
192
+ "type": "uint256"
193
+ },
194
+ {
195
+ "internalType": "bytes32",
196
+ "name": "wasmModuleRoot",
197
+ "type": "bytes32"
198
+ },
199
+ {
200
+ "internalType": "bytes32",
201
+ "name": "challengeStateHash",
202
+ "type": "bytes32"
203
+ },
204
+ {
205
+ "internalType": "uint64",
206
+ "name": "maxInboxMessages",
207
+ "type": "uint64"
208
+ },
209
+ {
210
+ "internalType": "enum ChallengeLib.ChallengeMode",
211
+ "name": "mode",
212
+ "type": "uint8"
213
+ }
214
+ ],
215
+ "internalType": "struct ChallengeLib.Challenge",
216
+ "name": "",
217
+ "type": "tuple"
218
+ }
219
+ ],
220
+ "stateMutability": "view",
221
+ "type": "function"
222
+ },
223
+ {
224
+ "inputs": [
225
+ {
226
+ "internalType": "uint64",
227
+ "name": "challengeIndex_",
228
+ "type": "uint64"
229
+ }
230
+ ],
231
+ "name": "clearChallenge",
232
+ "outputs": [],
233
+ "stateMutability": "nonpayable",
234
+ "type": "function"
235
+ },
236
+ {
237
+ "inputs": [
238
+ {
239
+ "internalType": "bytes32",
240
+ "name": "wasmModuleRoot_",
241
+ "type": "bytes32"
242
+ },
243
+ {
244
+ "internalType": "enum MachineStatus[2]",
245
+ "name": "startAndEndMachineStatuses_",
246
+ "type": "uint8[2]"
247
+ },
248
+ {
249
+ "components": [
250
+ {
251
+ "internalType": "bytes32[2]",
252
+ "name": "bytes32Vals",
253
+ "type": "bytes32[2]"
254
+ },
255
+ {
256
+ "internalType": "uint64[2]",
257
+ "name": "u64Vals",
258
+ "type": "uint64[2]"
259
+ }
260
+ ],
261
+ "internalType": "struct GlobalState[2]",
262
+ "name": "startAndEndGlobalStates_",
263
+ "type": "tuple[2]"
264
+ },
265
+ {
266
+ "internalType": "uint64",
267
+ "name": "numBlocks",
268
+ "type": "uint64"
269
+ },
270
+ {
271
+ "internalType": "address",
272
+ "name": "asserter_",
273
+ "type": "address"
274
+ },
275
+ {
276
+ "internalType": "address",
277
+ "name": "challenger_",
278
+ "type": "address"
279
+ },
280
+ {
281
+ "internalType": "uint256",
282
+ "name": "asserterTimeLeft_",
283
+ "type": "uint256"
284
+ },
285
+ {
286
+ "internalType": "uint256",
287
+ "name": "challengerTimeLeft_",
288
+ "type": "uint256"
289
+ }
290
+ ],
291
+ "name": "createChallenge",
292
+ "outputs": [
293
+ {
294
+ "internalType": "uint64",
295
+ "name": "",
296
+ "type": "uint64"
297
+ }
298
+ ],
299
+ "stateMutability": "nonpayable",
300
+ "type": "function"
301
+ },
302
+ {
303
+ "inputs": [
304
+ {
305
+ "internalType": "uint64",
306
+ "name": "challengeIndex",
307
+ "type": "uint64"
308
+ }
309
+ ],
310
+ "name": "currentResponder",
311
+ "outputs": [
312
+ {
313
+ "internalType": "address",
314
+ "name": "",
315
+ "type": "address"
316
+ }
317
+ ],
318
+ "stateMutability": "view",
319
+ "type": "function"
320
+ },
321
+ {
322
+ "inputs": [
323
+ {
324
+ "internalType": "contract IChallengeResultReceiver",
325
+ "name": "resultReceiver_",
326
+ "type": "address"
327
+ },
328
+ {
329
+ "internalType": "contract ISequencerInbox",
330
+ "name": "sequencerInbox_",
331
+ "type": "address"
332
+ },
333
+ {
334
+ "internalType": "contract IBridge",
335
+ "name": "bridge_",
336
+ "type": "address"
337
+ },
338
+ {
339
+ "internalType": "contract IOneStepProofEntry",
340
+ "name": "osp_",
341
+ "type": "address"
342
+ }
343
+ ],
344
+ "name": "initialize",
345
+ "outputs": [],
346
+ "stateMutability": "nonpayable",
347
+ "type": "function"
348
+ },
349
+ {
350
+ "inputs": [
351
+ {
352
+ "internalType": "uint64",
353
+ "name": "challengeIndex",
354
+ "type": "uint64"
355
+ }
356
+ ],
357
+ "name": "isTimedOut",
358
+ "outputs": [
359
+ {
360
+ "internalType": "bool",
361
+ "name": "",
362
+ "type": "bool"
363
+ }
364
+ ],
365
+ "stateMutability": "view",
366
+ "type": "function"
367
+ },
368
+ {
369
+ "inputs": [
370
+ {
371
+ "internalType": "uint64",
372
+ "name": "challengeIndex_",
373
+ "type": "uint64"
374
+ }
375
+ ],
376
+ "name": "timeout",
377
+ "outputs": [],
378
+ "stateMutability": "nonpayable",
379
+ "type": "function"
380
+ }
381
+ ],
382
+ "bytecode": "0x",
383
+ "deployedBytecode": "0x",
384
+ "linkReferences": {},
385
+ "deployedLinkReferences": {}
386
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/0dcb6662262cb1f840df82d061862da6.json"
4
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IChallengeResultReceiver",
4
+ "sourceName": "src/challenge/IChallengeResultReceiver.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "uint256",
10
+ "name": "challengeIndex",
11
+ "type": "uint256"
12
+ },
13
+ {
14
+ "internalType": "address",
15
+ "name": "winner",
16
+ "type": "address"
17
+ },
18
+ {
19
+ "internalType": "address",
20
+ "name": "loser",
21
+ "type": "address"
22
+ }
23
+ ],
24
+ "name": "completeChallenge",
25
+ "outputs": [],
26
+ "stateMutability": "nonpayable",
27
+ "type": "function"
28
+ }
29
+ ],
30
+ "bytecode": "0x",
31
+ "deployedBytecode": "0x",
32
+ "linkReferences": {},
33
+ "deployedLinkReferences": {}
34
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/0dcb6662262cb1f840df82d061862da6.json"
4
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "AddressAliasHelper",
4
+ "sourceName": "src/libraries/AddressAliasHelper.sol",
5
+ "abi": [],
6
+ "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212205dd9b78bd73a6499ec72a1c251c929b59ce114d5f4e42fb039f5b2aad3f3768f64736f6c63430008090033",
7
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212205dd9b78bd73a6499ec72a1c251c929b59ce114d5f4e42fb039f5b2aad3f3768f64736f6c63430008090033",
8
+ "linkReferences": {},
9
+ "deployedLinkReferences": {}
10
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/0dcb6662262cb1f840df82d061862da6.json"
4
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "AdminFallbackProxy",
4
+ "sourceName": "src/libraries/AdminFallbackProxy.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": false,
11
+ "internalType": "address",
12
+ "name": "previousAdmin",
13
+ "type": "address"
14
+ },
15
+ {
16
+ "indexed": false,
17
+ "internalType": "address",
18
+ "name": "newAdmin",
19
+ "type": "address"
20
+ }
21
+ ],
22
+ "name": "AdminChanged",
23
+ "type": "event"
24
+ },
25
+ {
26
+ "anonymous": false,
27
+ "inputs": [
28
+ {
29
+ "indexed": true,
30
+ "internalType": "address",
31
+ "name": "beacon",
32
+ "type": "address"
33
+ }
34
+ ],
35
+ "name": "BeaconUpgraded",
36
+ "type": "event"
37
+ },
38
+ {
39
+ "anonymous": false,
40
+ "inputs": [
41
+ {
42
+ "indexed": true,
43
+ "internalType": "address",
44
+ "name": "implementation",
45
+ "type": "address"
46
+ }
47
+ ],
48
+ "name": "Upgraded",
49
+ "type": "event"
50
+ },
51
+ {
52
+ "anonymous": false,
53
+ "inputs": [
54
+ {
55
+ "indexed": true,
56
+ "internalType": "address",
57
+ "name": "implementation",
58
+ "type": "address"
59
+ }
60
+ ],
61
+ "name": "UpgradedSecondary",
62
+ "type": "event"
63
+ },
64
+ {
65
+ "stateMutability": "payable",
66
+ "type": "fallback"
67
+ },
68
+ {
69
+ "stateMutability": "payable",
70
+ "type": "receive"
71
+ }
72
+ ],
73
+ "bytecode": "0x608060405234801561001057600080fd5b506101cf806100206000396000f3fe60806040523661001357610011610017565b005b6100115b610027610022610029565b6100f2565b565b6000600436101561006f5760405162461bcd60e51b815260206004820152600b60248201526a4e4f5f46554e435f53494760a81b60448201526064015b60405180910390fd5b60003361007a610116565b6001600160a01b0316141561009657610091610149565b61009e565b61009e610171565b90506001600160a01b0381163b6100ed5760405162461bcd60e51b815260206004820152601360248201527215105491d15517d393d517d0d3d395149050d5606a1b6044820152606401610066565b919050565b3660008037600080366000845af43d6000803e808015610111573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61013a565b60007f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d61013a56fea26469706673582212201903f8011eaea0afb60eecdae460623dc2140618a9a31302eb25eaa6bc8db0f964736f6c63430008090033",
74
+ "deployedBytecode": "0x60806040523661001357610011610017565b005b6100115b610027610022610029565b6100f2565b565b6000600436101561006f5760405162461bcd60e51b815260206004820152600b60248201526a4e4f5f46554e435f53494760a81b60448201526064015b60405180910390fd5b60003361007a610116565b6001600160a01b0316141561009657610091610149565b61009e565b61009e610171565b90506001600160a01b0381163b6100ed5760405162461bcd60e51b815260206004820152601360248201527215105491d15517d393d517d0d3d395149050d5606a1b6044820152606401610066565b919050565b3660008037600080366000845af43d6000803e808015610111573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61013a565b60007f2b1dbce74324248c222f0ec2d5ed7bd323cfc425b336f0253c5ccfda7265546d61013a56fea26469706673582212201903f8011eaea0afb60eecdae460623dc2140618a9a31302eb25eaa6bc8db0f964736f6c63430008090033",
75
+ "linkReferences": {},
76
+ "deployedLinkReferences": {}
77
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/0dcb6662262cb1f840df82d061862da6.json"
4
+ }
@@ -0,0 +1,69 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "DoubleLogicERC1967Upgrade",
4
+ "sourceName": "src/libraries/AdminFallbackProxy.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": false,
11
+ "internalType": "address",
12
+ "name": "previousAdmin",
13
+ "type": "address"
14
+ },
15
+ {
16
+ "indexed": false,
17
+ "internalType": "address",
18
+ "name": "newAdmin",
19
+ "type": "address"
20
+ }
21
+ ],
22
+ "name": "AdminChanged",
23
+ "type": "event"
24
+ },
25
+ {
26
+ "anonymous": false,
27
+ "inputs": [
28
+ {
29
+ "indexed": true,
30
+ "internalType": "address",
31
+ "name": "beacon",
32
+ "type": "address"
33
+ }
34
+ ],
35
+ "name": "BeaconUpgraded",
36
+ "type": "event"
37
+ },
38
+ {
39
+ "anonymous": false,
40
+ "inputs": [
41
+ {
42
+ "indexed": true,
43
+ "internalType": "address",
44
+ "name": "implementation",
45
+ "type": "address"
46
+ }
47
+ ],
48
+ "name": "Upgraded",
49
+ "type": "event"
50
+ },
51
+ {
52
+ "anonymous": false,
53
+ "inputs": [
54
+ {
55
+ "indexed": true,
56
+ "internalType": "address",
57
+ "name": "implementation",
58
+ "type": "address"
59
+ }
60
+ ],
61
+ "name": "UpgradedSecondary",
62
+ "type": "event"
63
+ }
64
+ ],
65
+ "bytecode": "0x",
66
+ "deployedBytecode": "0x",
67
+ "linkReferences": {},
68
+ "deployedLinkReferences": {}
69
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/392561f5b04c9f0976469785818f6718.json"
4
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "CryptographyPrimitives",
4
+ "sourceName": "src/libraries/CryptographyPrimitives.sol",
5
+ "abi": [],
6
+ "bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220aa9d4b9334e46a0fa7a53ec158ee0d45f55ca1c4ef60365dea5f942b83c999cd64736f6c63430008090033",
7
+ "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220aa9d4b9334e46a0fa7a53ec158ee0d45f55ca1c4ef60365dea5f942b83c999cd64736f6c63430008090033",
8
+ "linkReferences": {},
9
+ "deployedLinkReferences": {}
10
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/0dcb6662262cb1f840df82d061862da6.json"
4
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "DelegateCallAware",
4
+ "sourceName": "src/libraries/DelegateCallAware.sol",
5
+ "abi": [],
6
+ "bytecode": "0x",
7
+ "deployedBytecode": "0x",
8
+ "linkReferences": {},
9
+ "deployedLinkReferences": {}
10
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/0dcb6662262cb1f840df82d061862da6.json"
4
+ }