dequanto 0.1.9 → 0.1.13

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 (176) hide show
  1. package/lib/cjs/clients/ClientPool.d.ts +1 -1
  2. package/lib/cjs/clients/interfaces/IWeb3Client.d.ts +1 -1
  3. package/lib/cjs/clients/interfaces/IWeb3EndpointOptions.d.ts +1 -1
  4. package/lib/cjs/hardhat/HardhatProvider.d.ts +3 -2
  5. package/lib/cjs/hardhat/HardhatProvider.js +23 -13
  6. package/lib/cjs/hardhat/HardhatProvider.js.map +1 -1
  7. package/lib/cjs/hardhat/HardhatWeb3Client.js.map +1 -1
  8. package/lib/cjs/json/JsonStoreFs.js +1 -0
  9. package/lib/cjs/json/JsonStoreFs.js.map +1 -1
  10. package/lib/cjs/rpc/transports/DeferredTransport.d.ts +14 -0
  11. package/lib/cjs/rpc/transports/DeferredTransport.js +42 -0
  12. package/lib/cjs/rpc/transports/DeferredTransport.js.map +1 -0
  13. package/lib/cjs/rpc/transports/ITransport.d.ts +3 -2
  14. package/lib/cjs/rpc/transports/ITransport.js.map +1 -1
  15. package/lib/cjs/rpc/transports/RpcTransport.js +5 -0
  16. package/lib/cjs/rpc/transports/RpcTransport.js.map +1 -1
  17. package/lib/cjs/rpc/transports/WsTransport.js +4 -3
  18. package/lib/cjs/rpc/transports/WsTransport.js.map +1 -1
  19. package/lib/cjs/rpc/transports/WsTransportIsomorphic.d.ts +4 -1
  20. package/lib/cjs/rpc/transports/WsTransportIsomorphic.js +12 -4
  21. package/lib/cjs/rpc/transports/WsTransportIsomorphic.js.map +1 -1
  22. package/lib/cjs/rpc/transports/compatibility/Web3Transport.js.map +1 -1
  23. package/lib/cjs/utils/$dependency.d.ts +4 -0
  24. package/lib/cjs/utils/$dependency.js +45 -0
  25. package/lib/cjs/utils/$dependency.js.map +1 -0
  26. package/lib/cjs/utils/$is.d.ts +1 -0
  27. package/lib/cjs/utils/$is.js +4 -0
  28. package/lib/cjs/utils/$is.js.map +1 -1
  29. package/lib/cjs/utils/$logger.d.ts +3 -1
  30. package/lib/cjs/utils/$logger.js +37 -15
  31. package/lib/cjs/utils/$logger.js.map +1 -1
  32. package/lib/cjs/utils/$machine.js +8 -6
  33. package/lib/cjs/utils/$machine.js.map +1 -1
  34. package/lib/esm/clients/ClientPool.d.ts +1 -1
  35. package/lib/esm/clients/interfaces/IWeb3Client.d.ts +1 -1
  36. package/lib/esm/clients/interfaces/IWeb3EndpointOptions.d.ts +1 -1
  37. package/lib/esm/hardhat/HardhatProvider.d.ts +3 -2
  38. package/lib/esm/hardhat/HardhatProvider.js.map +1 -1
  39. package/lib/esm/hardhat/HardhatProvider.mjs +23 -13
  40. package/lib/esm/hardhat/HardhatWeb3Client.js.map +1 -1
  41. package/lib/esm/json/JsonStoreFs.js.map +1 -1
  42. package/lib/esm/json/JsonStoreFs.mjs +1 -0
  43. package/lib/esm/rpc/transports/DeferredTransport.d.ts +14 -0
  44. package/lib/esm/rpc/transports/DeferredTransport.js.map +1 -0
  45. package/lib/esm/rpc/transports/DeferredTransport.mjs +35 -0
  46. package/lib/esm/rpc/transports/ITransport.d.ts +3 -2
  47. package/lib/esm/rpc/transports/ITransport.js.map +1 -1
  48. package/lib/esm/rpc/transports/RpcTransport.js.map +1 -1
  49. package/lib/esm/rpc/transports/RpcTransport.mjs +5 -0
  50. package/lib/esm/rpc/transports/WsTransport.js.map +1 -1
  51. package/lib/esm/rpc/transports/WsTransport.mjs +2 -1
  52. package/lib/esm/rpc/transports/WsTransportIsomorphic.d.ts +4 -1
  53. package/lib/esm/rpc/transports/WsTransportIsomorphic.js.map +1 -1
  54. package/lib/esm/rpc/transports/WsTransportIsomorphic.mjs +11 -4
  55. package/lib/esm/rpc/transports/compatibility/Web3Transport.js.map +1 -1
  56. package/lib/esm/utils/$dependency.d.ts +4 -0
  57. package/lib/esm/utils/$dependency.js.map +1 -0
  58. package/lib/esm/utils/$dependency.mjs +18 -0
  59. package/lib/esm/utils/$is.d.ts +1 -0
  60. package/lib/esm/utils/$is.js.map +1 -1
  61. package/lib/esm/utils/$is.mjs +4 -0
  62. package/lib/esm/utils/$logger.d.ts +3 -1
  63. package/lib/esm/utils/$logger.js.map +1 -1
  64. package/lib/esm/utils/$logger.mjs +37 -15
  65. package/lib/esm/utils/$machine.js.map +1 -1
  66. package/lib/esm/utils/$machine.mjs +8 -6
  67. package/package-bundler.json +6 -4
  68. package/package.json +6 -6
  69. package/src/clients/ClientPool.ts +1 -1
  70. package/src/clients/interfaces/IWeb3Client.ts +1 -1
  71. package/src/clients/interfaces/IWeb3EndpointOptions.ts +1 -1
  72. package/src/hardhat/HardhatProvider.ts +26 -13
  73. package/src/hardhat/HardhatWeb3Client.ts +2 -1
  74. package/src/json/JsonStoreFs.ts +1 -0
  75. package/src/rpc/transports/DeferredTransport.ts +32 -0
  76. package/src/rpc/transports/ITransport.ts +3 -2
  77. package/src/rpc/transports/RpcTransport.ts +5 -0
  78. package/src/rpc/transports/WsTransport.ts +2 -1
  79. package/src/rpc/transports/WsTransportIsomorphic.ts +10 -4
  80. package/src/rpc/transports/compatibility/Web3Transport.ts +0 -4
  81. package/src/utils/$dependency.ts +19 -0
  82. package/src/utils/$is.ts +3 -0
  83. package/src/utils/$logger.ts +37 -13
  84. package/src/utils/$machine.ts +8 -6
  85. package/tsconfig-src.json +3 -2
  86. package/typings/globals/mocha/index.d.ts +8 -0
  87. package/typings/index.d.ts +0 -1
  88. package/cache/bsc/abis.json +0 -1
  89. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/06b3883a713ccea614891d4e19b1c5691a14226e976e22bbea3502baa4faf3a2.json +0 -1
  90. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/079b67422850620a67b4ce05c09ce12f66a9f62116522f1164daf50d5d645bff.json +0 -1
  91. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/09a94cce9de0e31ce006f442a739de1b828f7df29d8d37a3a7f2f18931883a3c.json +0 -1
  92. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/0ec8f406f3f7059dc605c39ce790a7490b4f98f07da106beaf66c8d4d7bcc0e7.json +0 -1
  93. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/113f6c42439780af7b22f0b3027b0d2a25da877bb7b12ee3f68ed6d3149c6887.json +0 -1
  94. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/151d7d8ec80fa8f6a9b5abd7693a3a5c762bea8850ee5883381e9bff8cb0a6b6.json +0 -1
  95. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/154fa6dbbdcebc4da9664ef04a0b859ac1a74bd6f9f49beae33afaeebfe783fa.json +0 -1
  96. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/1815a48da227e2a214e6aeed9872e86a2b26ee5851ae889bd468b435815bcea0.json +0 -1
  97. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/1a2cc6dcc4262de566c3ed80a6850b5671642a2f751fa01ecd5177348fd4718f.json +0 -1
  98. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/1ab52130bd0bd378333eb240f864ab5028e7d73a5652b71dce17db16c125ba6a.json +0 -1
  99. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/20dbdb2f0b07a4639cd6cef1beba29bb361492a146f953ada143cba8f3a1dfae.json +0 -1
  100. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/21899185839289857cf96f18d0c97956835aeb2b7e3d7900f78078d656a6b5bf.json +0 -1
  101. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/29b8e5ea3401b14d220de4339db70c73f901c4c6d03fa8c8d295b4a51f0bbda3.json +0 -1
  102. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/2a47e8af53078526ae65d395976d17f101b6d37428b4967ee762715acebe518a.json +0 -1
  103. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/2b7218cd5f9b727d7d8e44de05977de834eb94d1b33f60bbced7c81f1240b398.json +0 -1
  104. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/308b8e224402c15995f32cf94a899ac7d3f69fa2dd825f7b4fe33e7caf0fd23c.json +0 -1
  105. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/34a6a1202066b1aa35f2184426d5e67e8ff32970240b4916e063bb66a6cfc199.json +0 -1
  106. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/34a9de75d0f1a51cdc15ec0c2b76d2ed0298fe3dcb505c1c7e9a8a22b2af0130.json +0 -1
  107. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/3626ae119eb0b64767b3e5d17c09815fde6b7f42e5d938b99bfe6eaa163f79d7.json +0 -1
  108. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/3cab8ffc9a63bbbb7277a9b864757ae8ccc247d47666a62317a24be11f6a1411.json +0 -1
  109. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/3f5ad2b93311bd9b9a7d2714a4e330fa8ba0d1dbbb719479172305675cd6690b.json +0 -1
  110. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/41fd308e751cdcb1eb3dd7067762900577caff38c4e10cfcaa06419a7f8b7be8.json +0 -1
  111. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/42b00c8ab072ef7ea0e2c8eae031b36a17531d7686074d87299d5a861e768364.json +0 -1
  112. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/45d6b5f592cb25c1abb38ea6e5cfb8a3cc4d4e70a2f9540b3973e17ccf89f0c6.json +0 -1
  113. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/470301436d8bdf0e9ac28f33a05da66135cd405782cb5ccf32280807f44b0988.json +0 -1
  114. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/47583c90cddbebadcbf41201dc531919deab532c559100510f0b05ab06b45430.json +0 -1
  115. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/4d086a4e3b7040f41d366912a0a55c67d19fa1a05bc52fff37de4ee2896a21e7.json +0 -1
  116. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/4e46989a86be4e648edd4c9b10514f9ec06adb2b6cfb62dc1cd6e00ff5d69ce2.json +0 -1
  117. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/51140386ea4671060999a6e823f4598662dec599cd4293e05cbb244ad77f6396.json +0 -1
  118. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/56d0d1c1591c3bf3a38d7215d8b63f253973dbb3142c9970b59c453a498c0ad3.json +0 -1
  119. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/5cbe44014053d4c9663001112bb2c8a3ea28e803f644d526e58af1b9879fe31f.json +0 -1
  120. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/61938c222249acac4bbc25d9bcdfd5ff510acde168804dd74ce04ad6e6566658.json +0 -1
  121. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/625a4f0298c9dea7f31bb31d401d77449da967829269f593c7d2786d9ecb0934.json +0 -1
  122. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/67df3e0b260580a4fafd9b4d3e4c63bb69b912d5b22d1773613001432e1af77c.json +0 -1
  123. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/69a53481cf4fcc9311439e89111e2cfba9a6a56e0a48dfffb597d87d980ce40d.json +0 -1
  124. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/6bad2a9a9fa137fe43a9a9ab83849f3fbfc1b78564e615500b809056caf785a3.json +0 -1
  125. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/6cb6347b8cdb1ae0215bbb5e93dce4577ca03786631a0c5ca4d43c2ef6c4c59f.json +0 -1
  126. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/73827c7b69ffe133353fd0ba8bbc0d974d587257d908a4a96a8c5562a3022831.json +0 -1
  127. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/75529d03d2e92f6522294ad893e487812c26cdba3c5f0d27e373aea4a20b8d2a.json +0 -1
  128. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/7558bfcb3ab56d098a0d3a36df3cc33b73baceb4de35708c674a1671be7a1ccb.json +0 -1
  129. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/77c088a49e34f40799b0d595fb48e3908924a1d3a860bd4f179a8fe63122fbbe.json +0 -1
  130. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/77d492f9ae5092e3e4c175b60965766d3c8e60db2ad9ada16dbf108eac499a5b.json +0 -1
  131. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/8045eb7990994b374f8ef946306373e225b695c5810ffce4f17e77506665d158.json +0 -1
  132. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/817fe74bc9c2182cc105127046893e62b5dd7fa59efacc0bfb3e7d6a43bb8cb3.json +0 -1
  133. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/8192bea1a5dfac7a97a222f0078d914aae280b5953dec0994b71423b9df3e7e5.json +0 -1
  134. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/8299732babc9534320e778a75f24daddfad8280c514e34964ccd2d8168332b45.json +0 -1
  135. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/84d91e0f00bec021b825ab78660b5c5f3874caab246819d605da9d1aa7e84306.json +0 -1
  136. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/85fb10ebf27b7803d2a8806d1047459affadef3a62970f6d692678a4591a6498.json +0 -1
  137. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/87f6cbfcf204af0f72ac7a215e582f4d9bf1218fad0effc52959cb83163ac2cc.json +0 -1
  138. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/8940a4a674082e2af39e4bd4a6d1d36374f10df320e426b56536ed439a383365.json +0 -1
  139. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/89e6e12dcc0021530ed238e844134926067b428a5e8414f0beaf886d7962bae0.json +0 -1
  140. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/90f938e8ecfcf370ec8da736b2b5ab3341873141efbf8c0f132743bcf3f24089.json +0 -1
  141. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/9238431e9c6ed8f126b075d0dd4969ee66338e5b1bc6b1ad4c654966618d3ed7.json +0 -1
  142. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/95ea21ac78029bac293ff7286f0f6d89b5e1bc05b9b1dc814913941d9e40deb8.json +0 -1
  143. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/973bc296c63de86c49bca7350e3f96679c1e69da10b70fe8bc1431b37519df29.json +0 -1
  144. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/9998badf77e39248f459284f0ac11af6745e4007745e79e3a29cb809a84f89b1.json +0 -1
  145. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/a26aa034791865f648ff0997e648fa615e8c3edd9566f26d7b3c3f082d0d14f9.json +0 -1
  146. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/a4a9f3fd0019c64c9c291ddcf286ab19218c102bf11aaca35b5c7bfa8449a93b.json +0 -1
  147. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/a975285deef903789a7dacf314a36c4350d2fb0414fac2c7249948311e515a5b.json +0 -1
  148. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/af6e0b65b31e8108f886542ce4fb358d991e2c88e79549ba4c9042f98e8e9145.json +0 -1
  149. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/b32274854cd4e585902f93ffef63c422f1957c64839ac710cc8c07ce2d58f74c.json +0 -1
  150. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/b6b0bbeebdf99f0bcb3a21eb98dc5d22362c4dceeb9c471fd183528d568042ad.json +0 -1
  151. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/b84116063d7cc2ccdfcd94e00a6ac33356d5a4308411f70f6f9eec4d661d32a9.json +0 -1
  152. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/b92951142c439cc8ccbe0c667086d84df6276afb19d0002baddaaf075871c1dd.json +0 -1
  153. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/c19bb4c50c4afcb1a3e80126ef2d08147e9a4ea86bd9c84d200d0dc08ae19922.json +0 -1
  154. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/c268dfa99b07c50f55163f75c4fe9a2787d46edabc24ffae240cad58f6aeacd2.json +0 -1
  155. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/c8e88ada9bb106ed08ea76fffeff5242d47a1975c91e599f3d3dd38131f8fd10.json +0 -1
  156. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/d3899a459ef27a2d0c61ae8a1ba5f38caac13e7f6a746e1d741a9f87dec106ca.json +0 -1
  157. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/d56f13a93a87afb097f2a877cda630a1281d01bf353aca5201410c3c9a1de156.json +0 -1
  158. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/d7253417c7aa7bba38ed61d379a5a593c33ede0edd5680ea933db86171e07f1c.json +0 -1
  159. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/d8ac38bc679dafbd5f7800c6ff78968bdc0f1ea4979c48c74e99483559678931.json +0 -1
  160. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/e09e8fa017b1b949ea208f1dd523d09936e98ffea01c79537aeb03454d0a7e96.json +0 -1
  161. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/e34abf78e64af8214b1135d2ef264a37a22d3c5dcdff8278c4bfed57669d70af.json +0 -1
  162. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/e471e0ddf62845e63a391dee436aa5556212a33ff395824959472f22575b261b.json +0 -1
  163. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/e561394820e6d3b8eebc06ebbca7c731b008ecddebc5757ef0a50bb1a67786e5.json +0 -1
  164. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/e63e8e37369ae69830629bd62fca4c09eb49b5469a6c50902886ee8505689f22.json +0 -1
  165. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/e6dbb83cda8ce195ea7a6661b51c46803fcbd6d663edba4a04c0a86b4e5ab9c8.json +0 -1
  166. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/e7a59e35bb68853d63e5fd121633823ea4983c05c02d45f88f763509eb15f3ef.json +0 -1
  167. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/efebf090b661494cd62fd19b1166e6982bf95fcdd61b632ca61da1d61a8d4916.json +0 -1
  168. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/f10e759c96a69a4a7eb149cdf5d268307eab562e76b21eb03107abc23a376882.json +0 -1
  169. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/f133d50e1ec3b8447bee0316cd6e85e16aad3f434e78351f62fd51477412d200.json +0 -1
  170. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/f3060271e1a167a5835ad69a97d89145bf8871272b9b98356054e13353ff4260.json +0 -1
  171. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/f51529183ab657ae360e67fff00e38e98d7ef6fec41724a0d42fe993d83d0a51.json +0 -1
  172. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/f8251e7f4cc943eaeab53c6f7f7edc7893dafa2820c3b781c67fae659189c0c3.json +0 -1
  173. package/cache/hardhat-network-fork/rpc_cache/eth.public-rpc.com/1/fe55e62f0b66c738fbaaa61a166a2740ab381502096b797c9c6795778b52d2e6.json +0 -1
  174. package/cache/poly/abis-source.json +0 -1
  175. package/cache/poly/abis.json +0 -1
  176. package/cache/solidity-files-cache.json +0 -4146
@@ -1,4146 +0,0 @@
1
- {
2
- "_format": "hh-sol-cache-2",
3
- "files": {
4
- "/home/runner/work/dequanto/dequanto/test/fixtures/contracts/AlphaKlimaSimple.sol": {
5
- "lastModificationDate": 1731230840837,
6
- "contentHash": "4301a6d88b89618b0871a4df30262367",
7
- "sourceName": "test/fixtures/contracts/AlphaKlimaSimple.sol",
8
- "solcConfig": {
9
- "version": "0.8.20",
10
- "settings": {
11
- "optimizer": {
12
- "enabled": true,
13
- "runs": 200
14
- },
15
- "evmVersion": "paris",
16
- "outputSelection": {
17
- "*": {
18
- "*": [
19
- "abi",
20
- "evm.bytecode",
21
- "evm.deployedBytecode",
22
- "evm.methodIdentifiers",
23
- "metadata"
24
- ],
25
- "": [
26
- "ast"
27
- ]
28
- }
29
- }
30
- }
31
- },
32
- "imports": [],
33
- "versionPragmas": [],
34
- "artifacts": [
35
- "AlphaKlimaSimple",
36
- "ContextUpgradeable",
37
- "ERC20BurnableUpgradeable",
38
- "ERC20PresetFixedSupplyUpgradeable",
39
- "ERC20Upgradeable",
40
- "Initializable",
41
- "OwnableUpgradeable"
42
- ]
43
- },
44
- "/home/runner/work/dequanto/dequanto/test/fixtures/contracts/Counter.sol": {
45
- "lastModificationDate": 1731230840837,
46
- "contentHash": "4d5199691b9887438e9c722a83c962ce",
47
- "sourceName": "test/fixtures/contracts/Counter.sol",
48
- "solcConfig": {
49
- "version": "0.8.20",
50
- "settings": {
51
- "optimizer": {
52
- "enabled": true,
53
- "runs": 200
54
- },
55
- "evmVersion": "paris",
56
- "outputSelection": {
57
- "*": {
58
- "*": [
59
- "abi",
60
- "evm.bytecode",
61
- "evm.deployedBytecode",
62
- "evm.methodIdentifiers",
63
- "metadata"
64
- ],
65
- "": [
66
- "ast"
67
- ]
68
- }
69
- }
70
- }
71
- },
72
- "imports": [],
73
- "versionPragmas": [
74
- "^0.8.2"
75
- ],
76
- "artifacts": [
77
- "Counter"
78
- ]
79
- },
80
- "/home/runner/work/dequanto/dequanto/test/fixtures/contracts/Ecrecover.sol": {
81
- "lastModificationDate": 1731230840837,
82
- "contentHash": "ae7086e799d57f24ae8c10f82d1e52bd",
83
- "sourceName": "test/fixtures/contracts/Ecrecover.sol",
84
- "solcConfig": {
85
- "version": "0.8.20",
86
- "settings": {
87
- "optimizer": {
88
- "enabled": true,
89
- "runs": 200
90
- },
91
- "evmVersion": "paris",
92
- "outputSelection": {
93
- "*": {
94
- "*": [
95
- "abi",
96
- "evm.bytecode",
97
- "evm.deployedBytecode",
98
- "evm.methodIdentifiers",
99
- "metadata"
100
- ],
101
- "": [
102
- "ast"
103
- ]
104
- }
105
- }
106
- }
107
- },
108
- "imports": [
109
- "hardhat/console.sol"
110
- ],
111
- "versionPragmas": [
112
- "^0.8.2"
113
- ],
114
- "artifacts": [
115
- "Ecrecover"
116
- ]
117
- },
118
- "/home/runner/work/dequanto/dequanto/node_modules/hardhat/console.sol": {
119
- "lastModificationDate": 1731230849277,
120
- "contentHash": "681c532e816169606d13a5fe8b475074",
121
- "sourceName": "hardhat/console.sol",
122
- "solcConfig": {
123
- "version": "0.8.20",
124
- "settings": {
125
- "optimizer": {
126
- "enabled": true,
127
- "runs": 200
128
- },
129
- "evmVersion": "paris",
130
- "outputSelection": {
131
- "*": {
132
- "*": [
133
- "abi",
134
- "evm.bytecode",
135
- "evm.deployedBytecode",
136
- "evm.methodIdentifiers",
137
- "metadata"
138
- ],
139
- "": [
140
- "ast"
141
- ]
142
- }
143
- }
144
- }
145
- },
146
- "imports": [],
147
- "versionPragmas": [
148
- ">=0.4.22 <0.9.0"
149
- ],
150
- "artifacts": [
151
- "console"
152
- ]
153
- },
154
- "/home/runner/work/dequanto/dequanto/test/fixtures/contracts/Foo.sol": {
155
- "lastModificationDate": 1731230840837,
156
- "contentHash": "dab6ef2657f1f28333e4021494440e22",
157
- "sourceName": "test/fixtures/contracts/Foo.sol",
158
- "solcConfig": {
159
- "version": "0.8.20",
160
- "settings": {
161
- "optimizer": {
162
- "enabled": true,
163
- "runs": 200
164
- },
165
- "evmVersion": "paris",
166
- "outputSelection": {
167
- "*": {
168
- "*": [
169
- "abi",
170
- "evm.bytecode",
171
- "evm.deployedBytecode",
172
- "evm.methodIdentifiers",
173
- "metadata"
174
- ],
175
- "": [
176
- "ast"
177
- ]
178
- }
179
- }
180
- }
181
- },
182
- "imports": [
183
- "./FooNestedModel.sol"
184
- ],
185
- "versionPragmas": [
186
- "^0.8.2"
187
- ],
188
- "artifacts": [
189
- "Foo"
190
- ]
191
- },
192
- "/home/runner/work/dequanto/dequanto/test/fixtures/contracts/FooNestedModel.sol": {
193
- "lastModificationDate": 1731230840837,
194
- "contentHash": "1683b735c3999611fcf3e3145a1de9b5",
195
- "sourceName": "test/fixtures/contracts/FooNestedModel.sol",
196
- "solcConfig": {
197
- "version": "0.8.20",
198
- "settings": {
199
- "optimizer": {
200
- "enabled": true,
201
- "runs": 200
202
- },
203
- "evmVersion": "paris",
204
- "outputSelection": {
205
- "*": {
206
- "*": [
207
- "abi",
208
- "evm.bytecode",
209
- "evm.deployedBytecode",
210
- "evm.methodIdentifiers",
211
- "metadata"
212
- ],
213
- "": [
214
- "ast"
215
- ]
216
- }
217
- }
218
- }
219
- },
220
- "imports": [],
221
- "versionPragmas": [],
222
- "artifacts": [
223
- "FooNestedModel"
224
- ]
225
- },
226
- "/home/runner/work/dequanto/dequanto/test/fixtures/contracts/FooErc20.sol": {
227
- "lastModificationDate": 1731230840837,
228
- "contentHash": "143f222ac3b66e5c62c08913deafd9ba",
229
- "sourceName": "test/fixtures/contracts/FooErc20.sol",
230
- "solcConfig": {
231
- "version": "0.8.20",
232
- "settings": {
233
- "optimizer": {
234
- "enabled": true,
235
- "runs": 200
236
- },
237
- "evmVersion": "paris",
238
- "outputSelection": {
239
- "*": {
240
- "*": [
241
- "abi",
242
- "evm.bytecode",
243
- "evm.deployedBytecode",
244
- "evm.methodIdentifiers",
245
- "metadata"
246
- ],
247
- "": [
248
- "ast"
249
- ]
250
- }
251
- }
252
- }
253
- },
254
- "imports": [
255
- "@openzeppelin/contracts/token/ERC20/ERC20.sol"
256
- ],
257
- "versionPragmas": [],
258
- "artifacts": [
259
- "FooErc20"
260
- ]
261
- },
262
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/token/ERC20/ERC20.sol": {
263
- "lastModificationDate": 1731230848985,
264
- "contentHash": "3ae5166c6827a9cf1a7a462d1632b464",
265
- "sourceName": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
266
- "solcConfig": {
267
- "version": "0.8.20",
268
- "settings": {
269
- "optimizer": {
270
- "enabled": true,
271
- "runs": 200
272
- },
273
- "evmVersion": "paris",
274
- "outputSelection": {
275
- "*": {
276
- "*": [
277
- "abi",
278
- "evm.bytecode",
279
- "evm.deployedBytecode",
280
- "evm.methodIdentifiers",
281
- "metadata"
282
- ],
283
- "": [
284
- "ast"
285
- ]
286
- }
287
- }
288
- }
289
- },
290
- "imports": [
291
- "./IERC20.sol",
292
- "./extensions/IERC20Metadata.sol",
293
- "../../utils/Context.sol"
294
- ],
295
- "versionPragmas": [
296
- "^0.8.0"
297
- ],
298
- "artifacts": [
299
- "ERC20"
300
- ]
301
- },
302
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/utils/Context.sol": {
303
- "lastModificationDate": 1731230848909,
304
- "contentHash": "f07feb4a44b1a4872370da5aa70e8e46",
305
- "sourceName": "@openzeppelin/contracts/utils/Context.sol",
306
- "solcConfig": {
307
- "version": "0.8.20",
308
- "settings": {
309
- "optimizer": {
310
- "enabled": true,
311
- "runs": 200
312
- },
313
- "evmVersion": "paris",
314
- "outputSelection": {
315
- "*": {
316
- "*": [
317
- "abi",
318
- "evm.bytecode",
319
- "evm.deployedBytecode",
320
- "evm.methodIdentifiers",
321
- "metadata"
322
- ],
323
- "": [
324
- "ast"
325
- ]
326
- }
327
- }
328
- }
329
- },
330
- "imports": [],
331
- "versionPragmas": [
332
- "^0.8.0"
333
- ],
334
- "artifacts": [
335
- "Context"
336
- ]
337
- },
338
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol": {
339
- "lastModificationDate": 1731230849097,
340
- "contentHash": "df36f7051335cd1e748b1b6463b7fdd3",
341
- "sourceName": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
342
- "solcConfig": {
343
- "version": "0.8.20",
344
- "settings": {
345
- "optimizer": {
346
- "enabled": true,
347
- "runs": 200
348
- },
349
- "evmVersion": "paris",
350
- "outputSelection": {
351
- "*": {
352
- "*": [
353
- "abi",
354
- "evm.bytecode",
355
- "evm.deployedBytecode",
356
- "evm.methodIdentifiers",
357
- "metadata"
358
- ],
359
- "": [
360
- "ast"
361
- ]
362
- }
363
- }
364
- }
365
- },
366
- "imports": [],
367
- "versionPragmas": [
368
- "^0.8.0"
369
- ],
370
- "artifacts": [
371
- "IERC20"
372
- ]
373
- },
374
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
375
- "lastModificationDate": 1731230849097,
376
- "contentHash": "909ab67fc5c25033fe6cd364f8c056f9",
377
- "sourceName": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol",
378
- "solcConfig": {
379
- "version": "0.8.20",
380
- "settings": {
381
- "optimizer": {
382
- "enabled": true,
383
- "runs": 200
384
- },
385
- "evmVersion": "paris",
386
- "outputSelection": {
387
- "*": {
388
- "*": [
389
- "abi",
390
- "evm.bytecode",
391
- "evm.deployedBytecode",
392
- "evm.methodIdentifiers",
393
- "metadata"
394
- ],
395
- "": [
396
- "ast"
397
- ]
398
- }
399
- }
400
- }
401
- },
402
- "imports": [
403
- "../IERC20.sol"
404
- ],
405
- "versionPragmas": [
406
- "^0.8.0"
407
- ],
408
- "artifacts": [
409
- "IERC20Metadata"
410
- ]
411
- },
412
- "/home/runner/work/dequanto/dequanto/test/fixtures/contracts/FreeToken.sol": {
413
- "lastModificationDate": 1731230840837,
414
- "contentHash": "2b5f2484745e84be808bda8ba8fa628d",
415
- "sourceName": "test/fixtures/contracts/FreeToken.sol",
416
- "solcConfig": {
417
- "version": "0.8.20",
418
- "settings": {
419
- "optimizer": {
420
- "enabled": true,
421
- "runs": 200
422
- },
423
- "evmVersion": "paris",
424
- "outputSelection": {
425
- "*": {
426
- "*": [
427
- "abi",
428
- "evm.bytecode",
429
- "evm.deployedBytecode",
430
- "evm.methodIdentifiers",
431
- "metadata"
432
- ],
433
- "": [
434
- "ast"
435
- ]
436
- }
437
- }
438
- }
439
- },
440
- "imports": [],
441
- "versionPragmas": [
442
- "^0.8.0"
443
- ],
444
- "artifacts": [
445
- "FreeToken"
446
- ]
447
- },
448
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/core/BaseAccount.sol": {
449
- "lastModificationDate": 1731230840837,
450
- "contentHash": "a53a173b72742916b9c1cfef610f64b1",
451
- "sourceName": "test/fixtures/erc4337/core/BaseAccount.sol",
452
- "solcConfig": {
453
- "version": "0.8.20",
454
- "settings": {
455
- "optimizer": {
456
- "enabled": true,
457
- "runs": 200
458
- },
459
- "evmVersion": "paris",
460
- "outputSelection": {
461
- "*": {
462
- "*": [
463
- "abi",
464
- "evm.bytecode",
465
- "evm.deployedBytecode",
466
- "evm.methodIdentifiers",
467
- "metadata"
468
- ],
469
- "": [
470
- "ast"
471
- ]
472
- }
473
- }
474
- }
475
- },
476
- "imports": [
477
- "../interfaces/IAccount.sol",
478
- "../interfaces/IEntryPoint.sol",
479
- "./Helpers.sol"
480
- ],
481
- "versionPragmas": [
482
- "^0.8.12"
483
- ],
484
- "artifacts": [
485
- "BaseAccount"
486
- ]
487
- },
488
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/core/Helpers.sol": {
489
- "lastModificationDate": 1731230840841,
490
- "contentHash": "3cbc58efa815f026e5e180817b65c653",
491
- "sourceName": "test/fixtures/erc4337/core/Helpers.sol",
492
- "solcConfig": {
493
- "version": "0.8.20",
494
- "settings": {
495
- "optimizer": {
496
- "enabled": true,
497
- "runs": 200
498
- },
499
- "evmVersion": "paris",
500
- "outputSelection": {
501
- "*": {
502
- "*": [
503
- "abi",
504
- "evm.bytecode",
505
- "evm.deployedBytecode",
506
- "evm.methodIdentifiers",
507
- "metadata"
508
- ],
509
- "": [
510
- "ast"
511
- ]
512
- }
513
- }
514
- }
515
- },
516
- "imports": [],
517
- "versionPragmas": [
518
- "^0.8.12"
519
- ],
520
- "artifacts": []
521
- },
522
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/interfaces/IAccount.sol": {
523
- "lastModificationDate": 1731230840841,
524
- "contentHash": "6d787a742dcf67af8bebad8a8db7b78e",
525
- "sourceName": "test/fixtures/erc4337/interfaces/IAccount.sol",
526
- "solcConfig": {
527
- "version": "0.8.20",
528
- "settings": {
529
- "optimizer": {
530
- "enabled": true,
531
- "runs": 200
532
- },
533
- "evmVersion": "paris",
534
- "outputSelection": {
535
- "*": {
536
- "*": [
537
- "abi",
538
- "evm.bytecode",
539
- "evm.deployedBytecode",
540
- "evm.methodIdentifiers",
541
- "metadata"
542
- ],
543
- "": [
544
- "ast"
545
- ]
546
- }
547
- }
548
- }
549
- },
550
- "imports": [
551
- "./UserOperation.sol"
552
- ],
553
- "versionPragmas": [
554
- "^0.8.12"
555
- ],
556
- "artifacts": [
557
- "IAccount"
558
- ]
559
- },
560
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/interfaces/IEntryPoint.sol": {
561
- "lastModificationDate": 1731230840841,
562
- "contentHash": "f88a97ac988a378551551be9ea4ee65e",
563
- "sourceName": "test/fixtures/erc4337/interfaces/IEntryPoint.sol",
564
- "solcConfig": {
565
- "version": "0.8.20",
566
- "settings": {
567
- "optimizer": {
568
- "enabled": true,
569
- "runs": 200
570
- },
571
- "evmVersion": "paris",
572
- "outputSelection": {
573
- "*": {
574
- "*": [
575
- "abi",
576
- "evm.bytecode",
577
- "evm.deployedBytecode",
578
- "evm.methodIdentifiers",
579
- "metadata"
580
- ],
581
- "": [
582
- "ast"
583
- ]
584
- }
585
- }
586
- }
587
- },
588
- "imports": [
589
- "./UserOperation.sol",
590
- "./IStakeManager.sol",
591
- "./IAggregator.sol",
592
- "./INonceManager.sol"
593
- ],
594
- "versionPragmas": [
595
- "^0.8.12"
596
- ],
597
- "artifacts": [
598
- "IEntryPoint"
599
- ]
600
- },
601
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/interfaces/UserOperation.sol": {
602
- "lastModificationDate": 1731230840841,
603
- "contentHash": "e605ec59ee4889ea6ef8b5332e7da0d8",
604
- "sourceName": "test/fixtures/erc4337/interfaces/UserOperation.sol",
605
- "solcConfig": {
606
- "version": "0.8.20",
607
- "settings": {
608
- "optimizer": {
609
- "enabled": true,
610
- "runs": 200
611
- },
612
- "evmVersion": "paris",
613
- "outputSelection": {
614
- "*": {
615
- "*": [
616
- "abi",
617
- "evm.bytecode",
618
- "evm.deployedBytecode",
619
- "evm.methodIdentifiers",
620
- "metadata"
621
- ],
622
- "": [
623
- "ast"
624
- ]
625
- }
626
- }
627
- }
628
- },
629
- "imports": [
630
- "../core/Helpers.sol"
631
- ],
632
- "versionPragmas": [
633
- "^0.8.12"
634
- ],
635
- "artifacts": [
636
- "UserOperationLib"
637
- ]
638
- },
639
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/interfaces/IStakeManager.sol": {
640
- "lastModificationDate": 1731230840841,
641
- "contentHash": "e5c534a14fbf384a02ed5f007d54b1f0",
642
- "sourceName": "test/fixtures/erc4337/interfaces/IStakeManager.sol",
643
- "solcConfig": {
644
- "version": "0.8.20",
645
- "settings": {
646
- "optimizer": {
647
- "enabled": true,
648
- "runs": 200
649
- },
650
- "evmVersion": "paris",
651
- "outputSelection": {
652
- "*": {
653
- "*": [
654
- "abi",
655
- "evm.bytecode",
656
- "evm.deployedBytecode",
657
- "evm.methodIdentifiers",
658
- "metadata"
659
- ],
660
- "": [
661
- "ast"
662
- ]
663
- }
664
- }
665
- }
666
- },
667
- "imports": [],
668
- "versionPragmas": [
669
- "^0.8.12"
670
- ],
671
- "artifacts": [
672
- "IStakeManager"
673
- ]
674
- },
675
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/interfaces/IAggregator.sol": {
676
- "lastModificationDate": 1731230840841,
677
- "contentHash": "70c22a1f7e8ee0bd97fcabb493c4fca6",
678
- "sourceName": "test/fixtures/erc4337/interfaces/IAggregator.sol",
679
- "solcConfig": {
680
- "version": "0.8.20",
681
- "settings": {
682
- "optimizer": {
683
- "enabled": true,
684
- "runs": 200
685
- },
686
- "evmVersion": "paris",
687
- "outputSelection": {
688
- "*": {
689
- "*": [
690
- "abi",
691
- "evm.bytecode",
692
- "evm.deployedBytecode",
693
- "evm.methodIdentifiers",
694
- "metadata"
695
- ],
696
- "": [
697
- "ast"
698
- ]
699
- }
700
- }
701
- }
702
- },
703
- "imports": [
704
- "./UserOperation.sol"
705
- ],
706
- "versionPragmas": [
707
- "^0.8.12"
708
- ],
709
- "artifacts": [
710
- "IAggregator"
711
- ]
712
- },
713
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/interfaces/INonceManager.sol": {
714
- "lastModificationDate": 1731230840841,
715
- "contentHash": "58293337a68c401ac395a955ab972702",
716
- "sourceName": "test/fixtures/erc4337/interfaces/INonceManager.sol",
717
- "solcConfig": {
718
- "version": "0.8.20",
719
- "settings": {
720
- "optimizer": {
721
- "enabled": true,
722
- "runs": 200
723
- },
724
- "evmVersion": "paris",
725
- "outputSelection": {
726
- "*": {
727
- "*": [
728
- "abi",
729
- "evm.bytecode",
730
- "evm.deployedBytecode",
731
- "evm.methodIdentifiers",
732
- "metadata"
733
- ],
734
- "": [
735
- "ast"
736
- ]
737
- }
738
- }
739
- }
740
- },
741
- "imports": [],
742
- "versionPragmas": [
743
- "^0.8.12"
744
- ],
745
- "artifacts": [
746
- "INonceManager"
747
- ]
748
- },
749
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/core/EntryPoint.sol": {
750
- "lastModificationDate": 1731230840841,
751
- "contentHash": "ad550e84f21c0a82e53abdca70feafee",
752
- "sourceName": "test/fixtures/erc4337/core/EntryPoint.sol",
753
- "solcConfig": {
754
- "version": "0.8.20",
755
- "settings": {
756
- "optimizer": {
757
- "enabled": true,
758
- "runs": 200
759
- },
760
- "evmVersion": "paris",
761
- "outputSelection": {
762
- "*": {
763
- "*": [
764
- "abi",
765
- "evm.bytecode",
766
- "evm.deployedBytecode",
767
- "evm.methodIdentifiers",
768
- "metadata"
769
- ],
770
- "": [
771
- "ast"
772
- ]
773
- }
774
- }
775
- }
776
- },
777
- "imports": [
778
- "../interfaces/IAccount.sol",
779
- "../interfaces/IPaymaster.sol",
780
- "../interfaces/IEntryPoint.sol",
781
- "../utils/Exec.sol",
782
- "./StakeManager.sol",
783
- "./SenderCreator.sol",
784
- "./Helpers.sol",
785
- "./NonceManager.sol",
786
- "@openzeppelin/contracts/security/ReentrancyGuard.sol"
787
- ],
788
- "versionPragmas": [
789
- "^0.8.12"
790
- ],
791
- "artifacts": [
792
- "EntryPoint"
793
- ]
794
- },
795
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/core/StakeManager.sol": {
796
- "lastModificationDate": 1731230840841,
797
- "contentHash": "613d8c20b990bcf8cf2131ae2130a2c8",
798
- "sourceName": "test/fixtures/erc4337/core/StakeManager.sol",
799
- "solcConfig": {
800
- "version": "0.8.20",
801
- "settings": {
802
- "optimizer": {
803
- "enabled": true,
804
- "runs": 200
805
- },
806
- "evmVersion": "paris",
807
- "outputSelection": {
808
- "*": {
809
- "*": [
810
- "abi",
811
- "evm.bytecode",
812
- "evm.deployedBytecode",
813
- "evm.methodIdentifiers",
814
- "metadata"
815
- ],
816
- "": [
817
- "ast"
818
- ]
819
- }
820
- }
821
- }
822
- },
823
- "imports": [
824
- "../interfaces/IStakeManager.sol"
825
- ],
826
- "versionPragmas": [
827
- "^0.8.12"
828
- ],
829
- "artifacts": [
830
- "StakeManager"
831
- ]
832
- },
833
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/core/SenderCreator.sol": {
834
- "lastModificationDate": 1731230840841,
835
- "contentHash": "4910181341b8875940c6ea89500377a0",
836
- "sourceName": "test/fixtures/erc4337/core/SenderCreator.sol",
837
- "solcConfig": {
838
- "version": "0.8.20",
839
- "settings": {
840
- "optimizer": {
841
- "enabled": true,
842
- "runs": 200
843
- },
844
- "evmVersion": "paris",
845
- "outputSelection": {
846
- "*": {
847
- "*": [
848
- "abi",
849
- "evm.bytecode",
850
- "evm.deployedBytecode",
851
- "evm.methodIdentifiers",
852
- "metadata"
853
- ],
854
- "": [
855
- "ast"
856
- ]
857
- }
858
- }
859
- }
860
- },
861
- "imports": [],
862
- "versionPragmas": [
863
- "^0.8.12"
864
- ],
865
- "artifacts": [
866
- "SenderCreator"
867
- ]
868
- },
869
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/core/NonceManager.sol": {
870
- "lastModificationDate": 1731230840841,
871
- "contentHash": "6a3c752314494381d38f83abba1bdba4",
872
- "sourceName": "test/fixtures/erc4337/core/NonceManager.sol",
873
- "solcConfig": {
874
- "version": "0.8.20",
875
- "settings": {
876
- "optimizer": {
877
- "enabled": true,
878
- "runs": 200
879
- },
880
- "evmVersion": "paris",
881
- "outputSelection": {
882
- "*": {
883
- "*": [
884
- "abi",
885
- "evm.bytecode",
886
- "evm.deployedBytecode",
887
- "evm.methodIdentifiers",
888
- "metadata"
889
- ],
890
- "": [
891
- "ast"
892
- ]
893
- }
894
- }
895
- }
896
- },
897
- "imports": [
898
- "../interfaces/IEntryPoint.sol"
899
- ],
900
- "versionPragmas": [
901
- "^0.8.12"
902
- ],
903
- "artifacts": [
904
- "NonceManager"
905
- ]
906
- },
907
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/interfaces/IPaymaster.sol": {
908
- "lastModificationDate": 1731230840841,
909
- "contentHash": "4737c1fae42666f1b91fdac6a612076b",
910
- "sourceName": "test/fixtures/erc4337/interfaces/IPaymaster.sol",
911
- "solcConfig": {
912
- "version": "0.8.20",
913
- "settings": {
914
- "optimizer": {
915
- "enabled": true,
916
- "runs": 200
917
- },
918
- "evmVersion": "paris",
919
- "outputSelection": {
920
- "*": {
921
- "*": [
922
- "abi",
923
- "evm.bytecode",
924
- "evm.deployedBytecode",
925
- "evm.methodIdentifiers",
926
- "metadata"
927
- ],
928
- "": [
929
- "ast"
930
- ]
931
- }
932
- }
933
- }
934
- },
935
- "imports": [
936
- "./UserOperation.sol"
937
- ],
938
- "versionPragmas": [
939
- "^0.8.12"
940
- ],
941
- "artifacts": [
942
- "IPaymaster"
943
- ]
944
- },
945
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/utils/Exec.sol": {
946
- "lastModificationDate": 1731230840841,
947
- "contentHash": "4e8f2b61ef7b1a60ae834edb15752735",
948
- "sourceName": "test/fixtures/erc4337/utils/Exec.sol",
949
- "solcConfig": {
950
- "version": "0.8.20",
951
- "settings": {
952
- "optimizer": {
953
- "enabled": true,
954
- "runs": 200
955
- },
956
- "evmVersion": "paris",
957
- "outputSelection": {
958
- "*": {
959
- "*": [
960
- "abi",
961
- "evm.bytecode",
962
- "evm.deployedBytecode",
963
- "evm.methodIdentifiers",
964
- "metadata"
965
- ],
966
- "": [
967
- "ast"
968
- ]
969
- }
970
- }
971
- }
972
- },
973
- "imports": [],
974
- "versionPragmas": [
975
- ">=0.7.5 <0.9.0"
976
- ],
977
- "artifacts": [
978
- "Exec"
979
- ]
980
- },
981
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/security/ReentrancyGuard.sol": {
982
- "lastModificationDate": 1731230849165,
983
- "contentHash": "1535f8c0c68463f8c1b5239f7584e71f",
984
- "sourceName": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
985
- "solcConfig": {
986
- "version": "0.8.20",
987
- "settings": {
988
- "optimizer": {
989
- "enabled": true,
990
- "runs": 200
991
- },
992
- "evmVersion": "paris",
993
- "outputSelection": {
994
- "*": {
995
- "*": [
996
- "abi",
997
- "evm.bytecode",
998
- "evm.deployedBytecode",
999
- "evm.methodIdentifiers",
1000
- "metadata"
1001
- ],
1002
- "": [
1003
- "ast"
1004
- ]
1005
- }
1006
- }
1007
- }
1008
- },
1009
- "imports": [],
1010
- "versionPragmas": [
1011
- "^0.8.0"
1012
- ],
1013
- "artifacts": [
1014
- "ReentrancyGuard"
1015
- ]
1016
- },
1017
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/core/BasePaymaster.sol": {
1018
- "lastModificationDate": 1731230840837,
1019
- "contentHash": "37ecd8efd5cfa4f0c54f396ab6eade25",
1020
- "sourceName": "test/fixtures/erc4337/core/BasePaymaster.sol",
1021
- "solcConfig": {
1022
- "version": "0.8.20",
1023
- "settings": {
1024
- "optimizer": {
1025
- "enabled": true,
1026
- "runs": 200
1027
- },
1028
- "evmVersion": "paris",
1029
- "outputSelection": {
1030
- "*": {
1031
- "*": [
1032
- "abi",
1033
- "evm.bytecode",
1034
- "evm.deployedBytecode",
1035
- "evm.methodIdentifiers",
1036
- "metadata"
1037
- ],
1038
- "": [
1039
- "ast"
1040
- ]
1041
- }
1042
- }
1043
- }
1044
- },
1045
- "imports": [
1046
- "@openzeppelin/contracts/access/Ownable.sol",
1047
- "../interfaces/IPaymaster.sol",
1048
- "../interfaces/IEntryPoint.sol",
1049
- "./Helpers.sol"
1050
- ],
1051
- "versionPragmas": [
1052
- "^0.8.12"
1053
- ],
1054
- "artifacts": [
1055
- "BasePaymaster"
1056
- ]
1057
- },
1058
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/access/Ownable.sol": {
1059
- "lastModificationDate": 1731230849157,
1060
- "contentHash": "5a20b2cad87ddb61c7a3a6af21289e28",
1061
- "sourceName": "@openzeppelin/contracts/access/Ownable.sol",
1062
- "solcConfig": {
1063
- "version": "0.8.20",
1064
- "settings": {
1065
- "optimizer": {
1066
- "enabled": true,
1067
- "runs": 200
1068
- },
1069
- "evmVersion": "paris",
1070
- "outputSelection": {
1071
- "*": {
1072
- "*": [
1073
- "abi",
1074
- "evm.bytecode",
1075
- "evm.deployedBytecode",
1076
- "evm.methodIdentifiers",
1077
- "metadata"
1078
- ],
1079
- "": [
1080
- "ast"
1081
- ]
1082
- }
1083
- }
1084
- }
1085
- },
1086
- "imports": [
1087
- "../utils/Context.sol"
1088
- ],
1089
- "versionPragmas": [
1090
- "^0.8.0"
1091
- ],
1092
- "artifacts": [
1093
- "Ownable"
1094
- ]
1095
- },
1096
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/DepositPaymaster.sol": {
1097
- "lastModificationDate": 1731230840841,
1098
- "contentHash": "2788eb6058982bc721a9c5123b6c36b1",
1099
- "sourceName": "test/fixtures/erc4337/samples/DepositPaymaster.sol",
1100
- "solcConfig": {
1101
- "version": "0.8.20",
1102
- "settings": {
1103
- "optimizer": {
1104
- "enabled": true,
1105
- "runs": 200
1106
- },
1107
- "evmVersion": "paris",
1108
- "outputSelection": {
1109
- "*": {
1110
- "*": [
1111
- "abi",
1112
- "evm.bytecode",
1113
- "evm.deployedBytecode",
1114
- "evm.methodIdentifiers",
1115
- "metadata"
1116
- ],
1117
- "": [
1118
- "ast"
1119
- ]
1120
- }
1121
- }
1122
- }
1123
- },
1124
- "imports": [
1125
- "@openzeppelin/contracts/token/ERC20/IERC20.sol",
1126
- "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
1127
- "../core/BasePaymaster.sol",
1128
- "./IOracle.sol"
1129
- ],
1130
- "versionPragmas": [
1131
- "^0.8.12"
1132
- ],
1133
- "artifacts": [
1134
- "DepositPaymaster"
1135
- ]
1136
- },
1137
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/IOracle.sol": {
1138
- "lastModificationDate": 1731230840841,
1139
- "contentHash": "8b7f43fec73780517a1617e4300522c2",
1140
- "sourceName": "test/fixtures/erc4337/samples/IOracle.sol",
1141
- "solcConfig": {
1142
- "version": "0.8.20",
1143
- "settings": {
1144
- "optimizer": {
1145
- "enabled": true,
1146
- "runs": 200
1147
- },
1148
- "evmVersion": "paris",
1149
- "outputSelection": {
1150
- "*": {
1151
- "*": [
1152
- "abi",
1153
- "evm.bytecode",
1154
- "evm.deployedBytecode",
1155
- "evm.methodIdentifiers",
1156
- "metadata"
1157
- ],
1158
- "": [
1159
- "ast"
1160
- ]
1161
- }
1162
- }
1163
- }
1164
- },
1165
- "imports": [],
1166
- "versionPragmas": [
1167
- "^0.8.12"
1168
- ],
1169
- "artifacts": [
1170
- "IOracle"
1171
- ]
1172
- },
1173
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol": {
1174
- "lastModificationDate": 1731230849173,
1175
- "contentHash": "1b5d667d3740d866eca0352758e59827",
1176
- "sourceName": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
1177
- "solcConfig": {
1178
- "version": "0.8.20",
1179
- "settings": {
1180
- "optimizer": {
1181
- "enabled": true,
1182
- "runs": 200
1183
- },
1184
- "evmVersion": "paris",
1185
- "outputSelection": {
1186
- "*": {
1187
- "*": [
1188
- "abi",
1189
- "evm.bytecode",
1190
- "evm.deployedBytecode",
1191
- "evm.methodIdentifiers",
1192
- "metadata"
1193
- ],
1194
- "": [
1195
- "ast"
1196
- ]
1197
- }
1198
- }
1199
- }
1200
- },
1201
- "imports": [
1202
- "../IERC20.sol",
1203
- "../extensions/IERC20Permit.sol",
1204
- "../../../utils/Address.sol"
1205
- ],
1206
- "versionPragmas": [
1207
- "^0.8.0"
1208
- ],
1209
- "artifacts": [
1210
- "SafeERC20"
1211
- ]
1212
- },
1213
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/utils/Address.sol": {
1214
- "lastModificationDate": 1731230848889,
1215
- "contentHash": "211ffd288c1588ba8c10eae668ca3c66",
1216
- "sourceName": "@openzeppelin/contracts/utils/Address.sol",
1217
- "solcConfig": {
1218
- "version": "0.8.20",
1219
- "settings": {
1220
- "optimizer": {
1221
- "enabled": true,
1222
- "runs": 200
1223
- },
1224
- "evmVersion": "paris",
1225
- "outputSelection": {
1226
- "*": {
1227
- "*": [
1228
- "abi",
1229
- "evm.bytecode",
1230
- "evm.deployedBytecode",
1231
- "evm.methodIdentifiers",
1232
- "metadata"
1233
- ],
1234
- "": [
1235
- "ast"
1236
- ]
1237
- }
1238
- }
1239
- }
1240
- },
1241
- "imports": [],
1242
- "versionPragmas": [
1243
- "^0.8.1"
1244
- ],
1245
- "artifacts": [
1246
- "Address"
1247
- ]
1248
- },
1249
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol": {
1250
- "lastModificationDate": 1731230849101,
1251
- "contentHash": "525fcdad8d171312933f47baf01d1ed8",
1252
- "sourceName": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol",
1253
- "solcConfig": {
1254
- "version": "0.8.20",
1255
- "settings": {
1256
- "optimizer": {
1257
- "enabled": true,
1258
- "runs": 200
1259
- },
1260
- "evmVersion": "paris",
1261
- "outputSelection": {
1262
- "*": {
1263
- "*": [
1264
- "abi",
1265
- "evm.bytecode",
1266
- "evm.deployedBytecode",
1267
- "evm.methodIdentifiers",
1268
- "metadata"
1269
- ],
1270
- "": [
1271
- "ast"
1272
- ]
1273
- }
1274
- }
1275
- }
1276
- },
1277
- "imports": [],
1278
- "versionPragmas": [
1279
- "^0.8.0"
1280
- ],
1281
- "artifacts": [
1282
- "IERC20Permit"
1283
- ]
1284
- },
1285
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol": {
1286
- "lastModificationDate": 1731230848977,
1287
- "contentHash": "a127706394bead18392601a20d44867a",
1288
- "sourceName": "@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol",
1289
- "solcConfig": {
1290
- "version": "0.8.20",
1291
- "settings": {
1292
- "optimizer": {
1293
- "enabled": true,
1294
- "runs": 200
1295
- },
1296
- "evmVersion": "paris",
1297
- "outputSelection": {
1298
- "*": {
1299
- "*": [
1300
- "abi",
1301
- "evm.bytecode",
1302
- "evm.deployedBytecode",
1303
- "evm.methodIdentifiers",
1304
- "metadata"
1305
- ],
1306
- "": [
1307
- "ast"
1308
- ]
1309
- }
1310
- }
1311
- }
1312
- },
1313
- "imports": [
1314
- "../beacon/IBeacon.sol",
1315
- "../../interfaces/IERC1967.sol",
1316
- "../../interfaces/draft-IERC1822.sol",
1317
- "../../utils/Address.sol",
1318
- "../../utils/StorageSlot.sol"
1319
- ],
1320
- "versionPragmas": [
1321
- "^0.8.2"
1322
- ],
1323
- "artifacts": [
1324
- "ERC1967Upgrade"
1325
- ]
1326
- },
1327
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/interfaces/draft-IERC1822.sol": {
1328
- "lastModificationDate": 1731230848933,
1329
- "contentHash": "2858d98e74e67987ec81b39605230b74",
1330
- "sourceName": "@openzeppelin/contracts/interfaces/draft-IERC1822.sol",
1331
- "solcConfig": {
1332
- "version": "0.8.20",
1333
- "settings": {
1334
- "optimizer": {
1335
- "enabled": true,
1336
- "runs": 200
1337
- },
1338
- "evmVersion": "paris",
1339
- "outputSelection": {
1340
- "*": {
1341
- "*": [
1342
- "abi",
1343
- "evm.bytecode",
1344
- "evm.deployedBytecode",
1345
- "evm.methodIdentifiers",
1346
- "metadata"
1347
- ],
1348
- "": [
1349
- "ast"
1350
- ]
1351
- }
1352
- }
1353
- }
1354
- },
1355
- "imports": [],
1356
- "versionPragmas": [
1357
- "^0.8.0"
1358
- ],
1359
- "artifacts": [
1360
- "IERC1822Proxiable"
1361
- ]
1362
- },
1363
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/interfaces/IERC1967.sol": {
1364
- "lastModificationDate": 1731230849093,
1365
- "contentHash": "d0d060231a45da7a1eecbb5cd286fa40",
1366
- "sourceName": "@openzeppelin/contracts/interfaces/IERC1967.sol",
1367
- "solcConfig": {
1368
- "version": "0.8.20",
1369
- "settings": {
1370
- "optimizer": {
1371
- "enabled": true,
1372
- "runs": 200
1373
- },
1374
- "evmVersion": "paris",
1375
- "outputSelection": {
1376
- "*": {
1377
- "*": [
1378
- "abi",
1379
- "evm.bytecode",
1380
- "evm.deployedBytecode",
1381
- "evm.methodIdentifiers",
1382
- "metadata"
1383
- ],
1384
- "": [
1385
- "ast"
1386
- ]
1387
- }
1388
- }
1389
- }
1390
- },
1391
- "imports": [],
1392
- "versionPragmas": [
1393
- "^0.8.0"
1394
- ],
1395
- "artifacts": [
1396
- "IERC1967"
1397
- ]
1398
- },
1399
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/proxy/beacon/IBeacon.sol": {
1400
- "lastModificationDate": 1731230849073,
1401
- "contentHash": "b6bd23bf19e90b771337037706470933",
1402
- "sourceName": "@openzeppelin/contracts/proxy/beacon/IBeacon.sol",
1403
- "solcConfig": {
1404
- "version": "0.8.20",
1405
- "settings": {
1406
- "optimizer": {
1407
- "enabled": true,
1408
- "runs": 200
1409
- },
1410
- "evmVersion": "paris",
1411
- "outputSelection": {
1412
- "*": {
1413
- "*": [
1414
- "abi",
1415
- "evm.bytecode",
1416
- "evm.deployedBytecode",
1417
- "evm.methodIdentifiers",
1418
- "metadata"
1419
- ],
1420
- "": [
1421
- "ast"
1422
- ]
1423
- }
1424
- }
1425
- }
1426
- },
1427
- "imports": [],
1428
- "versionPragmas": [
1429
- "^0.8.0"
1430
- ],
1431
- "artifacts": [
1432
- "IBeacon"
1433
- ]
1434
- },
1435
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/utils/StorageSlot.sol": {
1436
- "lastModificationDate": 1731230849185,
1437
- "contentHash": "682f7dd1f2e1147c8390e7575deceb2d",
1438
- "sourceName": "@openzeppelin/contracts/utils/StorageSlot.sol",
1439
- "solcConfig": {
1440
- "version": "0.8.20",
1441
- "settings": {
1442
- "optimizer": {
1443
- "enabled": true,
1444
- "runs": 200
1445
- },
1446
- "evmVersion": "paris",
1447
- "outputSelection": {
1448
- "*": {
1449
- "*": [
1450
- "abi",
1451
- "evm.bytecode",
1452
- "evm.deployedBytecode",
1453
- "evm.methodIdentifiers",
1454
- "metadata"
1455
- ],
1456
- "": [
1457
- "ast"
1458
- ]
1459
- }
1460
- }
1461
- }
1462
- },
1463
- "imports": [],
1464
- "versionPragmas": [
1465
- "^0.8.0"
1466
- ],
1467
- "artifacts": [
1468
- "StorageSlot"
1469
- ]
1470
- },
1471
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol": {
1472
- "lastModificationDate": 1731230849193,
1473
- "contentHash": "ef5dcf877816ad119a42c741dd257d0a",
1474
- "sourceName": "@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol",
1475
- "solcConfig": {
1476
- "version": "0.8.20",
1477
- "settings": {
1478
- "optimizer": {
1479
- "enabled": true,
1480
- "runs": 200
1481
- },
1482
- "evmVersion": "paris",
1483
- "outputSelection": {
1484
- "*": {
1485
- "*": [
1486
- "abi",
1487
- "evm.bytecode",
1488
- "evm.deployedBytecode",
1489
- "evm.methodIdentifiers",
1490
- "metadata"
1491
- ],
1492
- "": [
1493
- "ast"
1494
- ]
1495
- }
1496
- }
1497
- }
1498
- },
1499
- "imports": [
1500
- "../../interfaces/draft-IERC1822.sol",
1501
- "../ERC1967/ERC1967Upgrade.sol"
1502
- ],
1503
- "versionPragmas": [
1504
- "^0.8.0"
1505
- ],
1506
- "artifacts": [
1507
- "UUPSUpgradeable"
1508
- ]
1509
- },
1510
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/SimpleAccount.sol": {
1511
- "lastModificationDate": 1731230840841,
1512
- "contentHash": "3a4cc121ea71410ab9d3f3076d9c1df3",
1513
- "sourceName": "test/fixtures/erc4337/samples/SimpleAccount.sol",
1514
- "solcConfig": {
1515
- "version": "0.8.20",
1516
- "settings": {
1517
- "optimizer": {
1518
- "enabled": true,
1519
- "runs": 200
1520
- },
1521
- "evmVersion": "paris",
1522
- "outputSelection": {
1523
- "*": {
1524
- "*": [
1525
- "abi",
1526
- "evm.bytecode",
1527
- "evm.deployedBytecode",
1528
- "evm.methodIdentifiers",
1529
- "metadata"
1530
- ],
1531
- "": [
1532
- "ast"
1533
- ]
1534
- }
1535
- }
1536
- }
1537
- },
1538
- "imports": [
1539
- "@openzeppelin/contracts/utils/cryptography/ECDSA.sol",
1540
- "@openzeppelin/contracts/proxy/utils/Initializable.sol",
1541
- "@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol",
1542
- "../core/BaseAccount.sol",
1543
- "./callback/TokenCallbackHandler.sol"
1544
- ],
1545
- "versionPragmas": [
1546
- "^0.8.12"
1547
- ],
1548
- "artifacts": [
1549
- "SimpleAccount"
1550
- ]
1551
- },
1552
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/callback/TokenCallbackHandler.sol": {
1553
- "lastModificationDate": 1731230840841,
1554
- "contentHash": "21bec772e7d7c8f85367728487148cf3",
1555
- "sourceName": "test/fixtures/erc4337/samples/callback/TokenCallbackHandler.sol",
1556
- "solcConfig": {
1557
- "version": "0.8.20",
1558
- "settings": {
1559
- "optimizer": {
1560
- "enabled": true,
1561
- "runs": 200
1562
- },
1563
- "evmVersion": "paris",
1564
- "outputSelection": {
1565
- "*": {
1566
- "*": [
1567
- "abi",
1568
- "evm.bytecode",
1569
- "evm.deployedBytecode",
1570
- "evm.methodIdentifiers",
1571
- "metadata"
1572
- ],
1573
- "": [
1574
- "ast"
1575
- ]
1576
- }
1577
- }
1578
- }
1579
- },
1580
- "imports": [
1581
- "@openzeppelin/contracts/utils/introspection/IERC165.sol",
1582
- "@openzeppelin/contracts/token/ERC777/IERC777Recipient.sol",
1583
- "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
1584
- "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol"
1585
- ],
1586
- "versionPragmas": [
1587
- "^0.8.12"
1588
- ],
1589
- "artifacts": [
1590
- "TokenCallbackHandler"
1591
- ]
1592
- },
1593
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
1594
- "lastModificationDate": 1731230848941,
1595
- "contentHash": "d822a8a9468649cab463f29f5decf5cc",
1596
- "sourceName": "@openzeppelin/contracts/utils/cryptography/ECDSA.sol",
1597
- "solcConfig": {
1598
- "version": "0.8.20",
1599
- "settings": {
1600
- "optimizer": {
1601
- "enabled": true,
1602
- "runs": 200
1603
- },
1604
- "evmVersion": "paris",
1605
- "outputSelection": {
1606
- "*": {
1607
- "*": [
1608
- "abi",
1609
- "evm.bytecode",
1610
- "evm.deployedBytecode",
1611
- "evm.methodIdentifiers",
1612
- "metadata"
1613
- ],
1614
- "": [
1615
- "ast"
1616
- ]
1617
- }
1618
- }
1619
- }
1620
- },
1621
- "imports": [
1622
- "../Strings.sol"
1623
- ],
1624
- "versionPragmas": [
1625
- "^0.8.0"
1626
- ],
1627
- "artifacts": [
1628
- "ECDSA"
1629
- ]
1630
- },
1631
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/proxy/utils/Initializable.sol": {
1632
- "lastModificationDate": 1731230849149,
1633
- "contentHash": "5efeb93e6b1c83c754da2846c2da51a7",
1634
- "sourceName": "@openzeppelin/contracts/proxy/utils/Initializable.sol",
1635
- "solcConfig": {
1636
- "version": "0.8.20",
1637
- "settings": {
1638
- "optimizer": {
1639
- "enabled": true,
1640
- "runs": 200
1641
- },
1642
- "evmVersion": "paris",
1643
- "outputSelection": {
1644
- "*": {
1645
- "*": [
1646
- "abi",
1647
- "evm.bytecode",
1648
- "evm.deployedBytecode",
1649
- "evm.methodIdentifiers",
1650
- "metadata"
1651
- ],
1652
- "": [
1653
- "ast"
1654
- ]
1655
- }
1656
- }
1657
- }
1658
- },
1659
- "imports": [
1660
- "../../utils/Address.sol"
1661
- ],
1662
- "versionPragmas": [
1663
- "^0.8.2"
1664
- ],
1665
- "artifacts": [
1666
- "Initializable"
1667
- ]
1668
- },
1669
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/utils/introspection/IERC165.sol": {
1670
- "lastModificationDate": 1731230849089,
1671
- "contentHash": "03e6768535ac4da0e9756f1d8a4a018a",
1672
- "sourceName": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
1673
- "solcConfig": {
1674
- "version": "0.8.20",
1675
- "settings": {
1676
- "optimizer": {
1677
- "enabled": true,
1678
- "runs": 200
1679
- },
1680
- "evmVersion": "paris",
1681
- "outputSelection": {
1682
- "*": {
1683
- "*": [
1684
- "abi",
1685
- "evm.bytecode",
1686
- "evm.deployedBytecode",
1687
- "evm.methodIdentifiers",
1688
- "metadata"
1689
- ],
1690
- "": [
1691
- "ast"
1692
- ]
1693
- }
1694
- }
1695
- }
1696
- },
1697
- "imports": [],
1698
- "versionPragmas": [
1699
- "^0.8.0"
1700
- ],
1701
- "artifacts": [
1702
- "IERC165"
1703
- ]
1704
- },
1705
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
1706
- "lastModificationDate": 1731230849129,
1707
- "contentHash": "c22d4395e33763de693fd440c6fd10e1",
1708
- "sourceName": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
1709
- "solcConfig": {
1710
- "version": "0.8.20",
1711
- "settings": {
1712
- "optimizer": {
1713
- "enabled": true,
1714
- "runs": 200
1715
- },
1716
- "evmVersion": "paris",
1717
- "outputSelection": {
1718
- "*": {
1719
- "*": [
1720
- "abi",
1721
- "evm.bytecode",
1722
- "evm.deployedBytecode",
1723
- "evm.methodIdentifiers",
1724
- "metadata"
1725
- ],
1726
- "": [
1727
- "ast"
1728
- ]
1729
- }
1730
- }
1731
- }
1732
- },
1733
- "imports": [],
1734
- "versionPragmas": [
1735
- "^0.8.0"
1736
- ],
1737
- "artifacts": [
1738
- "IERC721Receiver"
1739
- ]
1740
- },
1741
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol": {
1742
- "lastModificationDate": 1731230849085,
1743
- "contentHash": "9f8822b72fe2702979e40160cb6d9636",
1744
- "sourceName": "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol",
1745
- "solcConfig": {
1746
- "version": "0.8.20",
1747
- "settings": {
1748
- "optimizer": {
1749
- "enabled": true,
1750
- "runs": 200
1751
- },
1752
- "evmVersion": "paris",
1753
- "outputSelection": {
1754
- "*": {
1755
- "*": [
1756
- "abi",
1757
- "evm.bytecode",
1758
- "evm.deployedBytecode",
1759
- "evm.methodIdentifiers",
1760
- "metadata"
1761
- ],
1762
- "": [
1763
- "ast"
1764
- ]
1765
- }
1766
- }
1767
- }
1768
- },
1769
- "imports": [
1770
- "../../utils/introspection/IERC165.sol"
1771
- ],
1772
- "versionPragmas": [
1773
- "^0.8.0"
1774
- ],
1775
- "artifacts": [
1776
- "IERC1155Receiver"
1777
- ]
1778
- },
1779
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/token/ERC777/IERC777Recipient.sol": {
1780
- "lastModificationDate": 1731230849137,
1781
- "contentHash": "268af1696d7a83a7e78a1a8f5ba1c685",
1782
- "sourceName": "@openzeppelin/contracts/token/ERC777/IERC777Recipient.sol",
1783
- "solcConfig": {
1784
- "version": "0.8.20",
1785
- "settings": {
1786
- "optimizer": {
1787
- "enabled": true,
1788
- "runs": 200
1789
- },
1790
- "evmVersion": "paris",
1791
- "outputSelection": {
1792
- "*": {
1793
- "*": [
1794
- "abi",
1795
- "evm.bytecode",
1796
- "evm.deployedBytecode",
1797
- "evm.methodIdentifiers",
1798
- "metadata"
1799
- ],
1800
- "": [
1801
- "ast"
1802
- ]
1803
- }
1804
- }
1805
- }
1806
- },
1807
- "imports": [],
1808
- "versionPragmas": [
1809
- "^0.8.0"
1810
- ],
1811
- "artifacts": [
1812
- "IERC777Recipient"
1813
- ]
1814
- },
1815
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/utils/Strings.sol": {
1816
- "lastModificationDate": 1731230849189,
1817
- "contentHash": "48686fc32a22a3754b8e63321857dd2a",
1818
- "sourceName": "@openzeppelin/contracts/utils/Strings.sol",
1819
- "solcConfig": {
1820
- "version": "0.8.20",
1821
- "settings": {
1822
- "optimizer": {
1823
- "enabled": true,
1824
- "runs": 200
1825
- },
1826
- "evmVersion": "paris",
1827
- "outputSelection": {
1828
- "*": {
1829
- "*": [
1830
- "abi",
1831
- "evm.bytecode",
1832
- "evm.deployedBytecode",
1833
- "evm.methodIdentifiers",
1834
- "metadata"
1835
- ],
1836
- "": [
1837
- "ast"
1838
- ]
1839
- }
1840
- }
1841
- }
1842
- },
1843
- "imports": [
1844
- "./math/Math.sol",
1845
- "./math/SignedMath.sol"
1846
- ],
1847
- "versionPragmas": [
1848
- "^0.8.0"
1849
- ],
1850
- "artifacts": [
1851
- "Strings"
1852
- ]
1853
- },
1854
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/utils/math/Math.sol": {
1855
- "lastModificationDate": 1731230849153,
1856
- "contentHash": "fe63409d8a06818b926cf89e0ea88b1b",
1857
- "sourceName": "@openzeppelin/contracts/utils/math/Math.sol",
1858
- "solcConfig": {
1859
- "version": "0.8.20",
1860
- "settings": {
1861
- "optimizer": {
1862
- "enabled": true,
1863
- "runs": 200
1864
- },
1865
- "evmVersion": "paris",
1866
- "outputSelection": {
1867
- "*": {
1868
- "*": [
1869
- "abi",
1870
- "evm.bytecode",
1871
- "evm.deployedBytecode",
1872
- "evm.methodIdentifiers",
1873
- "metadata"
1874
- ],
1875
- "": [
1876
- "ast"
1877
- ]
1878
- }
1879
- }
1880
- }
1881
- },
1882
- "imports": [],
1883
- "versionPragmas": [
1884
- "^0.8.0"
1885
- ],
1886
- "artifacts": [
1887
- "Math"
1888
- ]
1889
- },
1890
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/utils/math/SignedMath.sol": {
1891
- "lastModificationDate": 1731230849185,
1892
- "contentHash": "9488ebd4daacfee8ad04811600d7d061",
1893
- "sourceName": "@openzeppelin/contracts/utils/math/SignedMath.sol",
1894
- "solcConfig": {
1895
- "version": "0.8.20",
1896
- "settings": {
1897
- "optimizer": {
1898
- "enabled": true,
1899
- "runs": 200
1900
- },
1901
- "evmVersion": "paris",
1902
- "outputSelection": {
1903
- "*": {
1904
- "*": [
1905
- "abi",
1906
- "evm.bytecode",
1907
- "evm.deployedBytecode",
1908
- "evm.methodIdentifiers",
1909
- "metadata"
1910
- ],
1911
- "": [
1912
- "ast"
1913
- ]
1914
- }
1915
- }
1916
- }
1917
- },
1918
- "imports": [],
1919
- "versionPragmas": [
1920
- "^0.8.0"
1921
- ],
1922
- "artifacts": [
1923
- "SignedMath"
1924
- ]
1925
- },
1926
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/bls/BLSAccount.sol": {
1927
- "lastModificationDate": 1731230840841,
1928
- "contentHash": "f9b987d79ac20309ed8300db5021a3de",
1929
- "sourceName": "test/fixtures/erc4337/samples/bls/BLSAccount.sol",
1930
- "solcConfig": {
1931
- "version": "0.8.20",
1932
- "settings": {
1933
- "optimizer": {
1934
- "enabled": true,
1935
- "runs": 200
1936
- },
1937
- "evmVersion": "paris",
1938
- "outputSelection": {
1939
- "*": {
1940
- "*": [
1941
- "abi",
1942
- "evm.bytecode",
1943
- "evm.deployedBytecode",
1944
- "evm.methodIdentifiers",
1945
- "metadata"
1946
- ],
1947
- "": [
1948
- "ast"
1949
- ]
1950
- }
1951
- }
1952
- }
1953
- },
1954
- "imports": [
1955
- "../SimpleAccount.sol",
1956
- "./IBLSAccount.sol"
1957
- ],
1958
- "versionPragmas": [
1959
- "^0.8.12"
1960
- ],
1961
- "artifacts": [
1962
- "BLSAccount"
1963
- ]
1964
- },
1965
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/bls/IBLSAccount.sol": {
1966
- "lastModificationDate": 1731230840841,
1967
- "contentHash": "56747673a6dfe6948b08138ae507219d",
1968
- "sourceName": "test/fixtures/erc4337/samples/bls/IBLSAccount.sol",
1969
- "solcConfig": {
1970
- "version": "0.8.20",
1971
- "settings": {
1972
- "optimizer": {
1973
- "enabled": true,
1974
- "runs": 200
1975
- },
1976
- "evmVersion": "paris",
1977
- "outputSelection": {
1978
- "*": {
1979
- "*": [
1980
- "abi",
1981
- "evm.bytecode",
1982
- "evm.deployedBytecode",
1983
- "evm.methodIdentifiers",
1984
- "metadata"
1985
- ],
1986
- "": [
1987
- "ast"
1988
- ]
1989
- }
1990
- }
1991
- }
1992
- },
1993
- "imports": [
1994
- "../../interfaces/IAccount.sol"
1995
- ],
1996
- "versionPragmas": [
1997
- ">=0.7.6"
1998
- ],
1999
- "artifacts": [
2000
- "IBLSAccount"
2001
- ]
2002
- },
2003
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/bls/BLSAccountFactory.sol": {
2004
- "lastModificationDate": 1731230840841,
2005
- "contentHash": "17411561c311e7843b70290f537ef037",
2006
- "sourceName": "test/fixtures/erc4337/samples/bls/BLSAccountFactory.sol",
2007
- "solcConfig": {
2008
- "version": "0.8.20",
2009
- "settings": {
2010
- "optimizer": {
2011
- "enabled": true,
2012
- "runs": 200
2013
- },
2014
- "evmVersion": "paris",
2015
- "outputSelection": {
2016
- "*": {
2017
- "*": [
2018
- "abi",
2019
- "evm.bytecode",
2020
- "evm.deployedBytecode",
2021
- "evm.methodIdentifiers",
2022
- "metadata"
2023
- ],
2024
- "": [
2025
- "ast"
2026
- ]
2027
- }
2028
- }
2029
- }
2030
- },
2031
- "imports": [
2032
- "@openzeppelin/contracts/utils/Create2.sol",
2033
- "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol",
2034
- "../../interfaces/IEntryPoint.sol",
2035
- "./BLSAccount.sol"
2036
- ],
2037
- "versionPragmas": [
2038
- "^0.8.12"
2039
- ],
2040
- "artifacts": [
2041
- "BLSAccountFactory"
2042
- ]
2043
- },
2044
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/utils/Create2.sol": {
2045
- "lastModificationDate": 1731230848909,
2046
- "contentHash": "752ff0901adbdac182deace414d9e75f",
2047
- "sourceName": "@openzeppelin/contracts/utils/Create2.sol",
2048
- "solcConfig": {
2049
- "version": "0.8.20",
2050
- "settings": {
2051
- "optimizer": {
2052
- "enabled": true,
2053
- "runs": 200
2054
- },
2055
- "evmVersion": "paris",
2056
- "outputSelection": {
2057
- "*": {
2058
- "*": [
2059
- "abi",
2060
- "evm.bytecode",
2061
- "evm.deployedBytecode",
2062
- "evm.methodIdentifiers",
2063
- "metadata"
2064
- ],
2065
- "": [
2066
- "ast"
2067
- ]
2068
- }
2069
- }
2070
- }
2071
- },
2072
- "imports": [],
2073
- "versionPragmas": [
2074
- "^0.8.0"
2075
- ],
2076
- "artifacts": [
2077
- "Create2"
2078
- ]
2079
- },
2080
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol": {
2081
- "lastModificationDate": 1731230848977,
2082
- "contentHash": "3fc3c7c0a2956f36e766691bb9473b06",
2083
- "sourceName": "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol",
2084
- "solcConfig": {
2085
- "version": "0.8.20",
2086
- "settings": {
2087
- "optimizer": {
2088
- "enabled": true,
2089
- "runs": 200
2090
- },
2091
- "evmVersion": "paris",
2092
- "outputSelection": {
2093
- "*": {
2094
- "*": [
2095
- "abi",
2096
- "evm.bytecode",
2097
- "evm.deployedBytecode",
2098
- "evm.methodIdentifiers",
2099
- "metadata"
2100
- ],
2101
- "": [
2102
- "ast"
2103
- ]
2104
- }
2105
- }
2106
- }
2107
- },
2108
- "imports": [
2109
- "../Proxy.sol",
2110
- "./ERC1967Upgrade.sol"
2111
- ],
2112
- "versionPragmas": [
2113
- "^0.8.0"
2114
- ],
2115
- "artifacts": [
2116
- "ERC1967Proxy"
2117
- ]
2118
- },
2119
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/proxy/Proxy.sol": {
2120
- "lastModificationDate": 1731230849161,
2121
- "contentHash": "40b3d81a836d50ff47e03893dcaaf204",
2122
- "sourceName": "@openzeppelin/contracts/proxy/Proxy.sol",
2123
- "solcConfig": {
2124
- "version": "0.8.20",
2125
- "settings": {
2126
- "optimizer": {
2127
- "enabled": true,
2128
- "runs": 200
2129
- },
2130
- "evmVersion": "paris",
2131
- "outputSelection": {
2132
- "*": {
2133
- "*": [
2134
- "abi",
2135
- "evm.bytecode",
2136
- "evm.deployedBytecode",
2137
- "evm.methodIdentifiers",
2138
- "metadata"
2139
- ],
2140
- "": [
2141
- "ast"
2142
- ]
2143
- }
2144
- }
2145
- }
2146
- },
2147
- "imports": [],
2148
- "versionPragmas": [
2149
- "^0.8.0"
2150
- ],
2151
- "artifacts": [
2152
- "Proxy"
2153
- ]
2154
- },
2155
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/SimpleAccountFactory.sol": {
2156
- "lastModificationDate": 1731230840841,
2157
- "contentHash": "dafb9b827df76515100a66963a1073f4",
2158
- "sourceName": "test/fixtures/erc4337/samples/SimpleAccountFactory.sol",
2159
- "solcConfig": {
2160
- "version": "0.8.20",
2161
- "settings": {
2162
- "optimizer": {
2163
- "enabled": true,
2164
- "runs": 200
2165
- },
2166
- "evmVersion": "paris",
2167
- "outputSelection": {
2168
- "*": {
2169
- "*": [
2170
- "abi",
2171
- "evm.bytecode",
2172
- "evm.deployedBytecode",
2173
- "evm.methodIdentifiers",
2174
- "metadata"
2175
- ],
2176
- "": [
2177
- "ast"
2178
- ]
2179
- }
2180
- }
2181
- }
2182
- },
2183
- "imports": [
2184
- "@openzeppelin/contracts/utils/Create2.sol",
2185
- "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol",
2186
- "./SimpleAccount.sol"
2187
- ],
2188
- "versionPragmas": [
2189
- "^0.8.12"
2190
- ],
2191
- "artifacts": [
2192
- "SimpleAccountFactory"
2193
- ]
2194
- },
2195
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/bls/BLSSignatureAggregator.sol": {
2196
- "lastModificationDate": 1731230840841,
2197
- "contentHash": "d52d125af5348c2d3b1296adcaceac38",
2198
- "sourceName": "test/fixtures/erc4337/samples/bls/BLSSignatureAggregator.sol",
2199
- "solcConfig": {
2200
- "version": "0.8.20",
2201
- "settings": {
2202
- "optimizer": {
2203
- "enabled": true,
2204
- "runs": 200
2205
- },
2206
- "evmVersion": "paris",
2207
- "outputSelection": {
2208
- "*": {
2209
- "*": [
2210
- "abi",
2211
- "evm.bytecode",
2212
- "evm.deployedBytecode",
2213
- "evm.methodIdentifiers",
2214
- "metadata"
2215
- ],
2216
- "": [
2217
- "ast"
2218
- ]
2219
- }
2220
- }
2221
- }
2222
- },
2223
- "imports": [
2224
- "../../interfaces/IAggregator.sol",
2225
- "../../interfaces/IEntryPoint.sol",
2226
- "./lib/BLSOpen.sol",
2227
- "./IBLSAccount.sol",
2228
- "./BLSHelper.sol"
2229
- ],
2230
- "versionPragmas": [
2231
- ">=0.8.4 <0.9.0"
2232
- ],
2233
- "artifacts": [
2234
- "BLSSignatureAggregator"
2235
- ]
2236
- },
2237
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/bls/lib/BLSOpen.sol": {
2238
- "lastModificationDate": 1731230840841,
2239
- "contentHash": "400b3a62e88e745334a62bc8179732ad",
2240
- "sourceName": "test/fixtures/erc4337/samples/bls/lib/BLSOpen.sol",
2241
- "solcConfig": {
2242
- "version": "0.8.20",
2243
- "settings": {
2244
- "optimizer": {
2245
- "enabled": true,
2246
- "runs": 200
2247
- },
2248
- "evmVersion": "paris",
2249
- "outputSelection": {
2250
- "*": {
2251
- "*": [
2252
- "abi",
2253
- "evm.bytecode",
2254
- "evm.deployedBytecode",
2255
- "evm.methodIdentifiers",
2256
- "metadata"
2257
- ],
2258
- "": [
2259
- "ast"
2260
- ]
2261
- }
2262
- }
2263
- }
2264
- },
2265
- "imports": [
2266
- "./hubble-contracts/contracts/libs/BLS.sol"
2267
- ],
2268
- "versionPragmas": [
2269
- ">= 0.6.12"
2270
- ],
2271
- "artifacts": [
2272
- "BLSOpen"
2273
- ]
2274
- },
2275
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/bls/BLSHelper.sol": {
2276
- "lastModificationDate": 1731230840841,
2277
- "contentHash": "16b89f26dc41536e2fbae18db07a9ecd",
2278
- "sourceName": "test/fixtures/erc4337/samples/bls/BLSHelper.sol",
2279
- "solcConfig": {
2280
- "version": "0.8.20",
2281
- "settings": {
2282
- "optimizer": {
2283
- "enabled": true,
2284
- "runs": 200
2285
- },
2286
- "evmVersion": "paris",
2287
- "outputSelection": {
2288
- "*": {
2289
- "*": [
2290
- "abi",
2291
- "evm.bytecode",
2292
- "evm.deployedBytecode",
2293
- "evm.methodIdentifiers",
2294
- "metadata"
2295
- ],
2296
- "": [
2297
- "ast"
2298
- ]
2299
- }
2300
- }
2301
- }
2302
- },
2303
- "imports": [],
2304
- "versionPragmas": [
2305
- "^0.8.12"
2306
- ],
2307
- "artifacts": [
2308
- "BLSHelper"
2309
- ]
2310
- },
2311
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/bls/lib/hubble-contracts/contracts/libs/BLS.sol": {
2312
- "lastModificationDate": 1731230840841,
2313
- "contentHash": "d92df49e4184b24da17413ab9ea31e4b",
2314
- "sourceName": "test/fixtures/erc4337/samples/bls/lib/hubble-contracts/contracts/libs/BLS.sol",
2315
- "solcConfig": {
2316
- "version": "0.8.20",
2317
- "settings": {
2318
- "optimizer": {
2319
- "enabled": true,
2320
- "runs": 200
2321
- },
2322
- "evmVersion": "paris",
2323
- "outputSelection": {
2324
- "*": {
2325
- "*": [
2326
- "abi",
2327
- "evm.bytecode",
2328
- "evm.deployedBytecode",
2329
- "evm.methodIdentifiers",
2330
- "metadata"
2331
- ],
2332
- "": [
2333
- "ast"
2334
- ]
2335
- }
2336
- }
2337
- }
2338
- },
2339
- "imports": [
2340
- "./ModExp.sol",
2341
- "./BNPairingPrecompileCostEstimator.sol"
2342
- ],
2343
- "versionPragmas": [
2344
- ">= 0.6.12"
2345
- ],
2346
- "artifacts": [
2347
- "BLS"
2348
- ]
2349
- },
2350
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/bls/lib/hubble-contracts/contracts/libs/ModExp.sol": {
2351
- "lastModificationDate": 1731230840841,
2352
- "contentHash": "752f7f550d91a76ef82dc3b49654d6ce",
2353
- "sourceName": "test/fixtures/erc4337/samples/bls/lib/hubble-contracts/contracts/libs/ModExp.sol",
2354
- "solcConfig": {
2355
- "version": "0.8.20",
2356
- "settings": {
2357
- "optimizer": {
2358
- "enabled": true,
2359
- "runs": 200
2360
- },
2361
- "evmVersion": "paris",
2362
- "outputSelection": {
2363
- "*": {
2364
- "*": [
2365
- "abi",
2366
- "evm.bytecode",
2367
- "evm.deployedBytecode",
2368
- "evm.methodIdentifiers",
2369
- "metadata"
2370
- ],
2371
- "": [
2372
- "ast"
2373
- ]
2374
- }
2375
- }
2376
- }
2377
- },
2378
- "imports": [],
2379
- "versionPragmas": [
2380
- ">= 0.6.12"
2381
- ],
2382
- "artifacts": [
2383
- "ModexpInverse",
2384
- "ModexpSqrt"
2385
- ]
2386
- },
2387
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/bls/lib/hubble-contracts/contracts/libs/BNPairingPrecompileCostEstimator.sol": {
2388
- "lastModificationDate": 1731230840841,
2389
- "contentHash": "1e935d3450d1069c5b923f0dee20925e",
2390
- "sourceName": "test/fixtures/erc4337/samples/bls/lib/hubble-contracts/contracts/libs/BNPairingPrecompileCostEstimator.sol",
2391
- "solcConfig": {
2392
- "version": "0.8.20",
2393
- "settings": {
2394
- "optimizer": {
2395
- "enabled": true,
2396
- "runs": 200
2397
- },
2398
- "evmVersion": "paris",
2399
- "outputSelection": {
2400
- "*": {
2401
- "*": [
2402
- "abi",
2403
- "evm.bytecode",
2404
- "evm.deployedBytecode",
2405
- "evm.methodIdentifiers",
2406
- "metadata"
2407
- ],
2408
- "": [
2409
- "ast"
2410
- ]
2411
- }
2412
- }
2413
- }
2414
- },
2415
- "imports": [],
2416
- "versionPragmas": [
2417
- ">=0.6.12"
2418
- ],
2419
- "artifacts": [
2420
- "BNPairingPrecompileCostEstimator"
2421
- ]
2422
- },
2423
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/TokenPaymaster.sol": {
2424
- "lastModificationDate": 1731230840841,
2425
- "contentHash": "7da1dc071f4d04bf084e7efc522150e0",
2426
- "sourceName": "test/fixtures/erc4337/samples/TokenPaymaster.sol",
2427
- "solcConfig": {
2428
- "version": "0.8.20",
2429
- "settings": {
2430
- "optimizer": {
2431
- "enabled": true,
2432
- "runs": 200
2433
- },
2434
- "evmVersion": "paris",
2435
- "outputSelection": {
2436
- "*": {
2437
- "*": [
2438
- "abi",
2439
- "evm.bytecode",
2440
- "evm.deployedBytecode",
2441
- "evm.methodIdentifiers",
2442
- "metadata"
2443
- ],
2444
- "": [
2445
- "ast"
2446
- ]
2447
- }
2448
- }
2449
- }
2450
- },
2451
- "imports": [
2452
- "@openzeppelin/contracts/token/ERC20/ERC20.sol",
2453
- "../core/BasePaymaster.sol"
2454
- ],
2455
- "versionPragmas": [
2456
- "^0.8.12"
2457
- ],
2458
- "artifacts": [
2459
- "TokenPaymaster"
2460
- ]
2461
- },
2462
- "/home/runner/work/dequanto/dequanto/test/fixtures/erc4337/samples/VerifyingPaymaster.sol": {
2463
- "lastModificationDate": 1731230840841,
2464
- "contentHash": "d6765ef1f84da6f7529c59f1d1235908",
2465
- "sourceName": "test/fixtures/erc4337/samples/VerifyingPaymaster.sol",
2466
- "solcConfig": {
2467
- "version": "0.8.20",
2468
- "settings": {
2469
- "optimizer": {
2470
- "enabled": true,
2471
- "runs": 200
2472
- },
2473
- "evmVersion": "paris",
2474
- "outputSelection": {
2475
- "*": {
2476
- "*": [
2477
- "abi",
2478
- "evm.bytecode",
2479
- "evm.deployedBytecode",
2480
- "evm.methodIdentifiers",
2481
- "metadata"
2482
- ],
2483
- "": [
2484
- "ast"
2485
- ]
2486
- }
2487
- }
2488
- }
2489
- },
2490
- "imports": [
2491
- "../core/BasePaymaster.sol",
2492
- "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"
2493
- ],
2494
- "versionPragmas": [
2495
- "^0.8.12"
2496
- ],
2497
- "artifacts": [
2498
- "VerifyingPaymaster"
2499
- ]
2500
- },
2501
- "/home/runner/work/dequanto/dequanto/test/fixtures/openzeppelin/Proxy.sol": {
2502
- "lastModificationDate": 1731230840845,
2503
- "contentHash": "ec1acc865bfb8a6f97005a50816190d5",
2504
- "sourceName": "test/fixtures/openzeppelin/Proxy.sol",
2505
- "solcConfig": {
2506
- "version": "0.8.20",
2507
- "settings": {
2508
- "optimizer": {
2509
- "enabled": true,
2510
- "runs": 200
2511
- },
2512
- "evmVersion": "paris",
2513
- "outputSelection": {
2514
- "*": {
2515
- "*": [
2516
- "abi",
2517
- "evm.bytecode",
2518
- "evm.deployedBytecode",
2519
- "evm.methodIdentifiers",
2520
- "metadata"
2521
- ],
2522
- "": [
2523
- "ast"
2524
- ]
2525
- }
2526
- }
2527
- }
2528
- },
2529
- "imports": [
2530
- "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol"
2531
- ],
2532
- "versionPragmas": [
2533
- "^0.8.2"
2534
- ],
2535
- "artifacts": [
2536
- "Proxy"
2537
- ]
2538
- },
2539
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol": {
2540
- "lastModificationDate": 1731230849193,
2541
- "contentHash": "1286aa8d056c7120d1a2da252e310d2f",
2542
- "sourceName": "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol",
2543
- "solcConfig": {
2544
- "version": "0.8.20",
2545
- "settings": {
2546
- "optimizer": {
2547
- "enabled": true,
2548
- "runs": 200
2549
- },
2550
- "evmVersion": "paris",
2551
- "outputSelection": {
2552
- "*": {
2553
- "*": [
2554
- "abi",
2555
- "evm.bytecode",
2556
- "evm.deployedBytecode",
2557
- "evm.methodIdentifiers",
2558
- "metadata"
2559
- ],
2560
- "": [
2561
- "ast"
2562
- ]
2563
- }
2564
- }
2565
- }
2566
- },
2567
- "imports": [
2568
- "../ERC1967/ERC1967Proxy.sol"
2569
- ],
2570
- "versionPragmas": [
2571
- "^0.8.0"
2572
- ],
2573
- "artifacts": [
2574
- "ITransparentUpgradeableProxy",
2575
- "TransparentUpgradeableProxy"
2576
- ]
2577
- },
2578
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol": {
2579
- "lastModificationDate": 1731230849161,
2580
- "contentHash": "9891986e27d357222a8ac8c0c13abe31",
2581
- "sourceName": "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol",
2582
- "solcConfig": {
2583
- "version": "0.8.20",
2584
- "settings": {
2585
- "optimizer": {
2586
- "enabled": true,
2587
- "runs": 200
2588
- },
2589
- "evmVersion": "paris",
2590
- "outputSelection": {
2591
- "*": {
2592
- "*": [
2593
- "abi",
2594
- "evm.bytecode",
2595
- "evm.deployedBytecode",
2596
- "evm.methodIdentifiers",
2597
- "metadata"
2598
- ],
2599
- "": [
2600
- "ast"
2601
- ]
2602
- }
2603
- }
2604
- }
2605
- },
2606
- "imports": [
2607
- "./TransparentUpgradeableProxy.sol",
2608
- "../../access/Ownable.sol"
2609
- ],
2610
- "versionPragmas": [
2611
- "^0.8.0"
2612
- ],
2613
- "artifacts": [
2614
- "ProxyAdmin"
2615
- ]
2616
- },
2617
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol": {
2618
- "lastModificationDate": 1731230849193,
2619
- "contentHash": "8ffefb755605824cf730ce4092b2f581",
2620
- "sourceName": "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol",
2621
- "solcConfig": {
2622
- "version": "0.8.20",
2623
- "settings": {
2624
- "optimizer": {
2625
- "enabled": true,
2626
- "runs": 200
2627
- },
2628
- "evmVersion": "paris",
2629
- "outputSelection": {
2630
- "*": {
2631
- "*": [
2632
- "abi",
2633
- "evm.bytecode",
2634
- "evm.deployedBytecode",
2635
- "evm.methodIdentifiers",
2636
- "metadata"
2637
- ],
2638
- "": [
2639
- "ast"
2640
- ]
2641
- }
2642
- }
2643
- }
2644
- },
2645
- "imports": [
2646
- "./IBeacon.sol",
2647
- "../../access/Ownable.sol",
2648
- "../../utils/Address.sol"
2649
- ],
2650
- "versionPragmas": [
2651
- "^0.8.0"
2652
- ],
2653
- "artifacts": [
2654
- "UpgradeableBeacon"
2655
- ]
2656
- },
2657
- "/home/runner/work/dequanto/dequanto/node_modules/@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol": {
2658
- "lastModificationDate": 1731230848897,
2659
- "contentHash": "dc9dcb6e542154d9cfbfaece646c1092",
2660
- "sourceName": "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol",
2661
- "solcConfig": {
2662
- "version": "0.8.20",
2663
- "settings": {
2664
- "optimizer": {
2665
- "enabled": true,
2666
- "runs": 200
2667
- },
2668
- "evmVersion": "paris",
2669
- "outputSelection": {
2670
- "*": {
2671
- "*": [
2672
- "abi",
2673
- "evm.bytecode",
2674
- "evm.deployedBytecode",
2675
- "evm.methodIdentifiers",
2676
- "metadata"
2677
- ],
2678
- "": [
2679
- "ast"
2680
- ]
2681
- }
2682
- }
2683
- }
2684
- },
2685
- "imports": [
2686
- "./IBeacon.sol",
2687
- "../Proxy.sol",
2688
- "../ERC1967/ERC1967Upgrade.sol"
2689
- ],
2690
- "versionPragmas": [
2691
- "^0.8.0"
2692
- ],
2693
- "artifacts": [
2694
- "BeaconProxy"
2695
- ]
2696
- },
2697
- "/home/runner/work/dequanto/dequanto/test/fixtures/openzeppelin/beacon/BeaconProxy.sol": {
2698
- "lastModificationDate": 1731230840845,
2699
- "contentHash": "5989b3315f09ffeb9794098fd4f1825a",
2700
- "sourceName": "test/fixtures/openzeppelin/beacon/BeaconProxy.sol",
2701
- "solcConfig": {
2702
- "version": "0.8.20",
2703
- "settings": {
2704
- "optimizer": {
2705
- "enabled": true,
2706
- "runs": 200
2707
- },
2708
- "evmVersion": "paris",
2709
- "outputSelection": {
2710
- "*": {
2711
- "*": [
2712
- "abi",
2713
- "evm.bytecode",
2714
- "evm.deployedBytecode",
2715
- "evm.methodIdentifiers",
2716
- "metadata"
2717
- ],
2718
- "": [
2719
- "ast"
2720
- ]
2721
- }
2722
- }
2723
- }
2724
- },
2725
- "imports": [
2726
- "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol"
2727
- ],
2728
- "versionPragmas": [
2729
- "^0.8.20"
2730
- ],
2731
- "artifacts": [
2732
- "BeaconProxy"
2733
- ]
2734
- },
2735
- "/home/runner/work/dequanto/dequanto/test/fixtures/openzeppelin/beacon/UpgradeableBeacon.sol": {
2736
- "lastModificationDate": 1731230840845,
2737
- "contentHash": "0604b1e098cd92f1eaf5944b6cea66d4",
2738
- "sourceName": "test/fixtures/openzeppelin/beacon/UpgradeableBeacon.sol",
2739
- "solcConfig": {
2740
- "version": "0.8.20",
2741
- "settings": {
2742
- "optimizer": {
2743
- "enabled": true,
2744
- "runs": 200
2745
- },
2746
- "evmVersion": "paris",
2747
- "outputSelection": {
2748
- "*": {
2749
- "*": [
2750
- "abi",
2751
- "evm.bytecode",
2752
- "evm.deployedBytecode",
2753
- "evm.methodIdentifiers",
2754
- "metadata"
2755
- ],
2756
- "": [
2757
- "ast"
2758
- ]
2759
- }
2760
- }
2761
- }
2762
- },
2763
- "imports": [
2764
- "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol"
2765
- ],
2766
- "versionPragmas": [
2767
- "^0.8.20"
2768
- ],
2769
- "artifacts": [
2770
- "Beacon"
2771
- ]
2772
- },
2773
- "/home/runner/work/dequanto/dequanto/test/fixtures/openzeppelin/ProxyAdmin.sol": {
2774
- "lastModificationDate": 1731230840845,
2775
- "contentHash": "fbebb3ff1ab4603f11e18aa7413c1c2c",
2776
- "sourceName": "test/fixtures/openzeppelin/ProxyAdmin.sol",
2777
- "solcConfig": {
2778
- "version": "0.8.20",
2779
- "settings": {
2780
- "optimizer": {
2781
- "enabled": true,
2782
- "runs": 200
2783
- },
2784
- "evmVersion": "paris",
2785
- "outputSelection": {
2786
- "*": {
2787
- "*": [
2788
- "abi",
2789
- "evm.bytecode",
2790
- "evm.deployedBytecode",
2791
- "evm.methodIdentifiers",
2792
- "metadata"
2793
- ],
2794
- "": [
2795
- "ast"
2796
- ]
2797
- }
2798
- }
2799
- }
2800
- },
2801
- "imports": [
2802
- "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol"
2803
- ],
2804
- "versionPragmas": [
2805
- "^0.8.2"
2806
- ],
2807
- "artifacts": [
2808
- "ProxyAdmin"
2809
- ]
2810
- },
2811
- "/home/runner/work/dequanto/dequanto/test/fixtures/deployments/DeploymentsFoo.sol": {
2812
- "lastModificationDate": 1731230840837,
2813
- "contentHash": "c4959ccf676aaf97ede77da8e045f87e",
2814
- "sourceName": "test/fixtures/deployments/DeploymentsFoo.sol",
2815
- "solcConfig": {
2816
- "version": "0.8.20",
2817
- "settings": {
2818
- "optimizer": {
2819
- "enabled": true,
2820
- "runs": 200
2821
- },
2822
- "evmVersion": "paris",
2823
- "outputSelection": {
2824
- "*": {
2825
- "*": [
2826
- "abi",
2827
- "evm.bytecode",
2828
- "evm.deployedBytecode",
2829
- "evm.methodIdentifiers",
2830
- "metadata"
2831
- ],
2832
- "": [
2833
- "ast"
2834
- ]
2835
- }
2836
- }
2837
- }
2838
- },
2839
- "imports": [],
2840
- "versionPragmas": [],
2841
- "artifacts": [
2842
- "DeploymentsFoo"
2843
- ]
2844
- },
2845
- "/home/runner/work/dequanto/dequanto/test/fixtures/deployments/DeploymentsFooV2.sol": {
2846
- "lastModificationDate": 1731230840837,
2847
- "contentHash": "a23a996d4a5896c1d75f5363cd711915",
2848
- "sourceName": "test/fixtures/deployments/DeploymentsFooV2.sol",
2849
- "solcConfig": {
2850
- "version": "0.8.20",
2851
- "settings": {
2852
- "optimizer": {
2853
- "enabled": true,
2854
- "runs": 200
2855
- },
2856
- "evmVersion": "paris",
2857
- "outputSelection": {
2858
- "*": {
2859
- "*": [
2860
- "abi",
2861
- "evm.bytecode",
2862
- "evm.deployedBytecode",
2863
- "evm.methodIdentifiers",
2864
- "metadata"
2865
- ],
2866
- "": [
2867
- "ast"
2868
- ]
2869
- }
2870
- }
2871
- }
2872
- },
2873
- "imports": [],
2874
- "versionPragmas": [],
2875
- "artifacts": [
2876
- "DeploymentsFooV2"
2877
- ]
2878
- },
2879
- "/home/runner/work/dequanto/dequanto/test/fixtures/deployments/DeploymentsFooV3.sol": {
2880
- "lastModificationDate": 1731230840837,
2881
- "contentHash": "10c11b76850e79a6ea0631dcdfc8ac96",
2882
- "sourceName": "test/fixtures/deployments/DeploymentsFooV3.sol",
2883
- "solcConfig": {
2884
- "version": "0.8.20",
2885
- "settings": {
2886
- "optimizer": {
2887
- "enabled": true,
2888
- "runs": 200
2889
- },
2890
- "evmVersion": "paris",
2891
- "outputSelection": {
2892
- "*": {
2893
- "*": [
2894
- "abi",
2895
- "evm.bytecode",
2896
- "evm.deployedBytecode",
2897
- "evm.methodIdentifiers",
2898
- "metadata"
2899
- ],
2900
- "": [
2901
- "ast"
2902
- ]
2903
- }
2904
- }
2905
- }
2906
- },
2907
- "imports": [],
2908
- "versionPragmas": [],
2909
- "artifacts": [
2910
- "DeploymentsFooV3"
2911
- ]
2912
- },
2913
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/proxies/GnosisSafeProxy.sol": {
2914
- "lastModificationDate": 1731230840845,
2915
- "contentHash": "eba113f6899fe142a2081f63aded8c83",
2916
- "sourceName": "test/fixtures/gnosis/proxies/GnosisSafeProxy.sol",
2917
- "solcConfig": {
2918
- "version": "0.8.20",
2919
- "settings": {
2920
- "optimizer": {
2921
- "enabled": true,
2922
- "runs": 200
2923
- },
2924
- "evmVersion": "paris",
2925
- "outputSelection": {
2926
- "*": {
2927
- "*": [
2928
- "abi",
2929
- "evm.bytecode",
2930
- "evm.deployedBytecode",
2931
- "evm.methodIdentifiers",
2932
- "metadata"
2933
- ],
2934
- "": [
2935
- "ast"
2936
- ]
2937
- }
2938
- }
2939
- }
2940
- },
2941
- "imports": [],
2942
- "versionPragmas": [
2943
- ">=0.7.0 <0.9.0"
2944
- ],
2945
- "artifacts": [
2946
- "GnosisSafeProxy",
2947
- "IProxy"
2948
- ]
2949
- },
2950
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/proxies/IProxyCreationCallback.sol": {
2951
- "lastModificationDate": 1731230840845,
2952
- "contentHash": "e73c0b8a985873c817469f5c6038e233",
2953
- "sourceName": "test/fixtures/gnosis/proxies/IProxyCreationCallback.sol",
2954
- "solcConfig": {
2955
- "version": "0.8.20",
2956
- "settings": {
2957
- "optimizer": {
2958
- "enabled": true,
2959
- "runs": 200
2960
- },
2961
- "evmVersion": "paris",
2962
- "outputSelection": {
2963
- "*": {
2964
- "*": [
2965
- "abi",
2966
- "evm.bytecode",
2967
- "evm.deployedBytecode",
2968
- "evm.methodIdentifiers",
2969
- "metadata"
2970
- ],
2971
- "": [
2972
- "ast"
2973
- ]
2974
- }
2975
- }
2976
- }
2977
- },
2978
- "imports": [
2979
- "./GnosisSafeProxy.sol"
2980
- ],
2981
- "versionPragmas": [
2982
- ">=0.7.0 <0.9.0"
2983
- ],
2984
- "artifacts": [
2985
- "IProxyCreationCallback"
2986
- ]
2987
- },
2988
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/proxies/GnosisSafeProxyFactory.sol": {
2989
- "lastModificationDate": 1731230840845,
2990
- "contentHash": "68e356db0b371d087168fef106757980",
2991
- "sourceName": "test/fixtures/gnosis/proxies/GnosisSafeProxyFactory.sol",
2992
- "solcConfig": {
2993
- "version": "0.8.20",
2994
- "settings": {
2995
- "optimizer": {
2996
- "enabled": true,
2997
- "runs": 200
2998
- },
2999
- "evmVersion": "paris",
3000
- "outputSelection": {
3001
- "*": {
3002
- "*": [
3003
- "abi",
3004
- "evm.bytecode",
3005
- "evm.deployedBytecode",
3006
- "evm.methodIdentifiers",
3007
- "metadata"
3008
- ],
3009
- "": [
3010
- "ast"
3011
- ]
3012
- }
3013
- }
3014
- }
3015
- },
3016
- "imports": [
3017
- "./GnosisSafeProxy.sol",
3018
- "./IProxyCreationCallback.sol"
3019
- ],
3020
- "versionPragmas": [
3021
- ">=0.7.0 <0.9.0"
3022
- ],
3023
- "artifacts": [
3024
- "GnosisSafeProxyFactory"
3025
- ]
3026
- },
3027
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/GnosisSafe.sol": {
3028
- "lastModificationDate": 1731230840841,
3029
- "contentHash": "de68f8747b0480a923ad6652aa7c2ef3",
3030
- "sourceName": "test/fixtures/gnosis/GnosisSafe.sol",
3031
- "solcConfig": {
3032
- "version": "0.8.20",
3033
- "settings": {
3034
- "optimizer": {
3035
- "enabled": true,
3036
- "runs": 200
3037
- },
3038
- "evmVersion": "paris",
3039
- "outputSelection": {
3040
- "*": {
3041
- "*": [
3042
- "abi",
3043
- "evm.bytecode",
3044
- "evm.deployedBytecode",
3045
- "evm.methodIdentifiers",
3046
- "metadata"
3047
- ],
3048
- "": [
3049
- "ast"
3050
- ]
3051
- }
3052
- }
3053
- }
3054
- },
3055
- "imports": [
3056
- "./base/ModuleManager.sol",
3057
- "./base/OwnerManager.sol",
3058
- "./base/FallbackManager.sol",
3059
- "./base/GuardManager.sol",
3060
- "./common/EtherPaymentFallback.sol",
3061
- "./common/Singleton.sol",
3062
- "./common/SignatureDecoder.sol",
3063
- "./common/SecuredTokenTransfer.sol",
3064
- "./common/StorageAccessible.sol",
3065
- "./interfaces/ISignatureValidator.sol",
3066
- "./external/GnosisSafeMath.sol"
3067
- ],
3068
- "versionPragmas": [
3069
- ">=0.7.0 <0.9.0"
3070
- ],
3071
- "artifacts": [
3072
- "GnosisSafe"
3073
- ]
3074
- },
3075
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/base/ModuleManager.sol": {
3076
- "lastModificationDate": 1731230840841,
3077
- "contentHash": "90b2541c32a7644991f6ec3510dc3776",
3078
- "sourceName": "test/fixtures/gnosis/base/ModuleManager.sol",
3079
- "solcConfig": {
3080
- "version": "0.8.20",
3081
- "settings": {
3082
- "optimizer": {
3083
- "enabled": true,
3084
- "runs": 200
3085
- },
3086
- "evmVersion": "paris",
3087
- "outputSelection": {
3088
- "*": {
3089
- "*": [
3090
- "abi",
3091
- "evm.bytecode",
3092
- "evm.deployedBytecode",
3093
- "evm.methodIdentifiers",
3094
- "metadata"
3095
- ],
3096
- "": [
3097
- "ast"
3098
- ]
3099
- }
3100
- }
3101
- }
3102
- },
3103
- "imports": [
3104
- "../common/Enum.sol",
3105
- "../common/SelfAuthorized.sol",
3106
- "./Executor.sol"
3107
- ],
3108
- "versionPragmas": [
3109
- ">=0.7.0 <0.9.0"
3110
- ],
3111
- "artifacts": [
3112
- "ModuleManager"
3113
- ]
3114
- },
3115
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/base/FallbackManager.sol": {
3116
- "lastModificationDate": 1731230840841,
3117
- "contentHash": "3247316e45ba683ad526769217c7ab66",
3118
- "sourceName": "test/fixtures/gnosis/base/FallbackManager.sol",
3119
- "solcConfig": {
3120
- "version": "0.8.20",
3121
- "settings": {
3122
- "optimizer": {
3123
- "enabled": true,
3124
- "runs": 200
3125
- },
3126
- "evmVersion": "paris",
3127
- "outputSelection": {
3128
- "*": {
3129
- "*": [
3130
- "abi",
3131
- "evm.bytecode",
3132
- "evm.deployedBytecode",
3133
- "evm.methodIdentifiers",
3134
- "metadata"
3135
- ],
3136
- "": [
3137
- "ast"
3138
- ]
3139
- }
3140
- }
3141
- }
3142
- },
3143
- "imports": [
3144
- "../common/SelfAuthorized.sol"
3145
- ],
3146
- "versionPragmas": [
3147
- ">=0.7.0 <0.9.0"
3148
- ],
3149
- "artifacts": [
3150
- "FallbackManager"
3151
- ]
3152
- },
3153
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/base/OwnerManager.sol": {
3154
- "lastModificationDate": 1731230840841,
3155
- "contentHash": "53e497cc090cb4931ca5905d7f671cc5",
3156
- "sourceName": "test/fixtures/gnosis/base/OwnerManager.sol",
3157
- "solcConfig": {
3158
- "version": "0.8.20",
3159
- "settings": {
3160
- "optimizer": {
3161
- "enabled": true,
3162
- "runs": 200
3163
- },
3164
- "evmVersion": "paris",
3165
- "outputSelection": {
3166
- "*": {
3167
- "*": [
3168
- "abi",
3169
- "evm.bytecode",
3170
- "evm.deployedBytecode",
3171
- "evm.methodIdentifiers",
3172
- "metadata"
3173
- ],
3174
- "": [
3175
- "ast"
3176
- ]
3177
- }
3178
- }
3179
- }
3180
- },
3181
- "imports": [
3182
- "../common/SelfAuthorized.sol"
3183
- ],
3184
- "versionPragmas": [
3185
- ">=0.7.0 <0.9.0"
3186
- ],
3187
- "artifacts": [
3188
- "OwnerManager"
3189
- ]
3190
- },
3191
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/base/GuardManager.sol": {
3192
- "lastModificationDate": 1731230840841,
3193
- "contentHash": "40079831763d0f051f998279669ea5a9",
3194
- "sourceName": "test/fixtures/gnosis/base/GuardManager.sol",
3195
- "solcConfig": {
3196
- "version": "0.8.20",
3197
- "settings": {
3198
- "optimizer": {
3199
- "enabled": true,
3200
- "runs": 200
3201
- },
3202
- "evmVersion": "paris",
3203
- "outputSelection": {
3204
- "*": {
3205
- "*": [
3206
- "abi",
3207
- "evm.bytecode",
3208
- "evm.deployedBytecode",
3209
- "evm.methodIdentifiers",
3210
- "metadata"
3211
- ],
3212
- "": [
3213
- "ast"
3214
- ]
3215
- }
3216
- }
3217
- }
3218
- },
3219
- "imports": [
3220
- "../common/Enum.sol",
3221
- "../common/SelfAuthorized.sol",
3222
- "../interfaces/IERC165.sol"
3223
- ],
3224
- "versionPragmas": [
3225
- ">=0.7.0 <0.9.0"
3226
- ],
3227
- "artifacts": [
3228
- "BaseGuard",
3229
- "Guard",
3230
- "GuardManager"
3231
- ]
3232
- },
3233
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/common/EtherPaymentFallback.sol": {
3234
- "lastModificationDate": 1731230840841,
3235
- "contentHash": "566ab89634daf8e542177b1e7016971e",
3236
- "sourceName": "test/fixtures/gnosis/common/EtherPaymentFallback.sol",
3237
- "solcConfig": {
3238
- "version": "0.8.20",
3239
- "settings": {
3240
- "optimizer": {
3241
- "enabled": true,
3242
- "runs": 200
3243
- },
3244
- "evmVersion": "paris",
3245
- "outputSelection": {
3246
- "*": {
3247
- "*": [
3248
- "abi",
3249
- "evm.bytecode",
3250
- "evm.deployedBytecode",
3251
- "evm.methodIdentifiers",
3252
- "metadata"
3253
- ],
3254
- "": [
3255
- "ast"
3256
- ]
3257
- }
3258
- }
3259
- }
3260
- },
3261
- "imports": [],
3262
- "versionPragmas": [
3263
- ">=0.7.0 <0.9.0"
3264
- ],
3265
- "artifacts": [
3266
- "EtherPaymentFallback"
3267
- ]
3268
- },
3269
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/common/Singleton.sol": {
3270
- "lastModificationDate": 1731230840841,
3271
- "contentHash": "334ef119459ae9a5487c6bd346752778",
3272
- "sourceName": "test/fixtures/gnosis/common/Singleton.sol",
3273
- "solcConfig": {
3274
- "version": "0.8.20",
3275
- "settings": {
3276
- "optimizer": {
3277
- "enabled": true,
3278
- "runs": 200
3279
- },
3280
- "evmVersion": "paris",
3281
- "outputSelection": {
3282
- "*": {
3283
- "*": [
3284
- "abi",
3285
- "evm.bytecode",
3286
- "evm.deployedBytecode",
3287
- "evm.methodIdentifiers",
3288
- "metadata"
3289
- ],
3290
- "": [
3291
- "ast"
3292
- ]
3293
- }
3294
- }
3295
- }
3296
- },
3297
- "imports": [],
3298
- "versionPragmas": [
3299
- ">=0.7.0 <0.9.0"
3300
- ],
3301
- "artifacts": [
3302
- "Singleton"
3303
- ]
3304
- },
3305
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/common/SignatureDecoder.sol": {
3306
- "lastModificationDate": 1731230840841,
3307
- "contentHash": "2284c5df4444ca9b2cf4a38a45d85650",
3308
- "sourceName": "test/fixtures/gnosis/common/SignatureDecoder.sol",
3309
- "solcConfig": {
3310
- "version": "0.8.20",
3311
- "settings": {
3312
- "optimizer": {
3313
- "enabled": true,
3314
- "runs": 200
3315
- },
3316
- "evmVersion": "paris",
3317
- "outputSelection": {
3318
- "*": {
3319
- "*": [
3320
- "abi",
3321
- "evm.bytecode",
3322
- "evm.deployedBytecode",
3323
- "evm.methodIdentifiers",
3324
- "metadata"
3325
- ],
3326
- "": [
3327
- "ast"
3328
- ]
3329
- }
3330
- }
3331
- }
3332
- },
3333
- "imports": [],
3334
- "versionPragmas": [
3335
- ">=0.7.0 <0.9.0"
3336
- ],
3337
- "artifacts": [
3338
- "SignatureDecoder"
3339
- ]
3340
- },
3341
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/common/SecuredTokenTransfer.sol": {
3342
- "lastModificationDate": 1731230840841,
3343
- "contentHash": "80c88034d9e09f88f6853fc707cf03c6",
3344
- "sourceName": "test/fixtures/gnosis/common/SecuredTokenTransfer.sol",
3345
- "solcConfig": {
3346
- "version": "0.8.20",
3347
- "settings": {
3348
- "optimizer": {
3349
- "enabled": true,
3350
- "runs": 200
3351
- },
3352
- "evmVersion": "paris",
3353
- "outputSelection": {
3354
- "*": {
3355
- "*": [
3356
- "abi",
3357
- "evm.bytecode",
3358
- "evm.deployedBytecode",
3359
- "evm.methodIdentifiers",
3360
- "metadata"
3361
- ],
3362
- "": [
3363
- "ast"
3364
- ]
3365
- }
3366
- }
3367
- }
3368
- },
3369
- "imports": [],
3370
- "versionPragmas": [
3371
- ">=0.7.0 <0.9.0"
3372
- ],
3373
- "artifacts": [
3374
- "SecuredTokenTransfer"
3375
- ]
3376
- },
3377
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/common/StorageAccessible.sol": {
3378
- "lastModificationDate": 1731230840841,
3379
- "contentHash": "6fa2dc51af34831e6b0fff6197165ed0",
3380
- "sourceName": "test/fixtures/gnosis/common/StorageAccessible.sol",
3381
- "solcConfig": {
3382
- "version": "0.8.20",
3383
- "settings": {
3384
- "optimizer": {
3385
- "enabled": true,
3386
- "runs": 200
3387
- },
3388
- "evmVersion": "paris",
3389
- "outputSelection": {
3390
- "*": {
3391
- "*": [
3392
- "abi",
3393
- "evm.bytecode",
3394
- "evm.deployedBytecode",
3395
- "evm.methodIdentifiers",
3396
- "metadata"
3397
- ],
3398
- "": [
3399
- "ast"
3400
- ]
3401
- }
3402
- }
3403
- }
3404
- },
3405
- "imports": [],
3406
- "versionPragmas": [
3407
- ">=0.7.0 <0.9.0"
3408
- ],
3409
- "artifacts": [
3410
- "StorageAccessible"
3411
- ]
3412
- },
3413
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/interfaces/ISignatureValidator.sol": {
3414
- "lastModificationDate": 1731230840845,
3415
- "contentHash": "45be433b79d00dd9f3b8047489c3ff80",
3416
- "sourceName": "test/fixtures/gnosis/interfaces/ISignatureValidator.sol",
3417
- "solcConfig": {
3418
- "version": "0.8.20",
3419
- "settings": {
3420
- "optimizer": {
3421
- "enabled": true,
3422
- "runs": 200
3423
- },
3424
- "evmVersion": "paris",
3425
- "outputSelection": {
3426
- "*": {
3427
- "*": [
3428
- "abi",
3429
- "evm.bytecode",
3430
- "evm.deployedBytecode",
3431
- "evm.methodIdentifiers",
3432
- "metadata"
3433
- ],
3434
- "": [
3435
- "ast"
3436
- ]
3437
- }
3438
- }
3439
- }
3440
- },
3441
- "imports": [],
3442
- "versionPragmas": [
3443
- ">=0.7.0 <0.9.0"
3444
- ],
3445
- "artifacts": [
3446
- "ISignatureValidator",
3447
- "ISignatureValidatorConstants"
3448
- ]
3449
- },
3450
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/external/GnosisSafeMath.sol": {
3451
- "lastModificationDate": 1731230840841,
3452
- "contentHash": "0b98e5ff6cd364731017082744cf5706",
3453
- "sourceName": "test/fixtures/gnosis/external/GnosisSafeMath.sol",
3454
- "solcConfig": {
3455
- "version": "0.8.20",
3456
- "settings": {
3457
- "optimizer": {
3458
- "enabled": true,
3459
- "runs": 200
3460
- },
3461
- "evmVersion": "paris",
3462
- "outputSelection": {
3463
- "*": {
3464
- "*": [
3465
- "abi",
3466
- "evm.bytecode",
3467
- "evm.deployedBytecode",
3468
- "evm.methodIdentifiers",
3469
- "metadata"
3470
- ],
3471
- "": [
3472
- "ast"
3473
- ]
3474
- }
3475
- }
3476
- }
3477
- },
3478
- "imports": [],
3479
- "versionPragmas": [
3480
- ">=0.7.0 <0.9.0"
3481
- ],
3482
- "artifacts": [
3483
- "GnosisSafeMath"
3484
- ]
3485
- },
3486
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/common/Enum.sol": {
3487
- "lastModificationDate": 1731230840841,
3488
- "contentHash": "70d93d6b3e8b23f419fe3e529a43c17e",
3489
- "sourceName": "test/fixtures/gnosis/common/Enum.sol",
3490
- "solcConfig": {
3491
- "version": "0.8.20",
3492
- "settings": {
3493
- "optimizer": {
3494
- "enabled": true,
3495
- "runs": 200
3496
- },
3497
- "evmVersion": "paris",
3498
- "outputSelection": {
3499
- "*": {
3500
- "*": [
3501
- "abi",
3502
- "evm.bytecode",
3503
- "evm.deployedBytecode",
3504
- "evm.methodIdentifiers",
3505
- "metadata"
3506
- ],
3507
- "": [
3508
- "ast"
3509
- ]
3510
- }
3511
- }
3512
- }
3513
- },
3514
- "imports": [],
3515
- "versionPragmas": [
3516
- ">=0.7.0 <0.9.0"
3517
- ],
3518
- "artifacts": [
3519
- "Enum"
3520
- ]
3521
- },
3522
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/common/SelfAuthorized.sol": {
3523
- "lastModificationDate": 1731230840841,
3524
- "contentHash": "4c773e803298d5521ba60d7fc06df0b3",
3525
- "sourceName": "test/fixtures/gnosis/common/SelfAuthorized.sol",
3526
- "solcConfig": {
3527
- "version": "0.8.20",
3528
- "settings": {
3529
- "optimizer": {
3530
- "enabled": true,
3531
- "runs": 200
3532
- },
3533
- "evmVersion": "paris",
3534
- "outputSelection": {
3535
- "*": {
3536
- "*": [
3537
- "abi",
3538
- "evm.bytecode",
3539
- "evm.deployedBytecode",
3540
- "evm.methodIdentifiers",
3541
- "metadata"
3542
- ],
3543
- "": [
3544
- "ast"
3545
- ]
3546
- }
3547
- }
3548
- }
3549
- },
3550
- "imports": [],
3551
- "versionPragmas": [
3552
- ">=0.7.0 <0.9.0"
3553
- ],
3554
- "artifacts": [
3555
- "SelfAuthorized"
3556
- ]
3557
- },
3558
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/base/Executor.sol": {
3559
- "lastModificationDate": 1731230840841,
3560
- "contentHash": "5d439865306475654cf018596f1b1061",
3561
- "sourceName": "test/fixtures/gnosis/base/Executor.sol",
3562
- "solcConfig": {
3563
- "version": "0.8.20",
3564
- "settings": {
3565
- "optimizer": {
3566
- "enabled": true,
3567
- "runs": 200
3568
- },
3569
- "evmVersion": "paris",
3570
- "outputSelection": {
3571
- "*": {
3572
- "*": [
3573
- "abi",
3574
- "evm.bytecode",
3575
- "evm.deployedBytecode",
3576
- "evm.methodIdentifiers",
3577
- "metadata"
3578
- ],
3579
- "": [
3580
- "ast"
3581
- ]
3582
- }
3583
- }
3584
- }
3585
- },
3586
- "imports": [
3587
- "../common/Enum.sol"
3588
- ],
3589
- "versionPragmas": [
3590
- ">=0.7.0 <0.9.0"
3591
- ],
3592
- "artifacts": [
3593
- "Executor"
3594
- ]
3595
- },
3596
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/interfaces/IERC165.sol": {
3597
- "lastModificationDate": 1731230840841,
3598
- "contentHash": "2d418698dff7323e4f199ff8633d1a3a",
3599
- "sourceName": "test/fixtures/gnosis/interfaces/IERC165.sol",
3600
- "solcConfig": {
3601
- "version": "0.8.20",
3602
- "settings": {
3603
- "optimizer": {
3604
- "enabled": true,
3605
- "runs": 200
3606
- },
3607
- "evmVersion": "paris",
3608
- "outputSelection": {
3609
- "*": {
3610
- "*": [
3611
- "abi",
3612
- "evm.bytecode",
3613
- "evm.deployedBytecode",
3614
- "evm.methodIdentifiers",
3615
- "metadata"
3616
- ],
3617
- "": [
3618
- "ast"
3619
- ]
3620
- }
3621
- }
3622
- }
3623
- },
3624
- "imports": [],
3625
- "versionPragmas": [
3626
- ">=0.7.0 <0.9.0"
3627
- ],
3628
- "artifacts": [
3629
- "IERC165"
3630
- ]
3631
- },
3632
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/libraries/SignMessageLib.sol": {
3633
- "lastModificationDate": 1731230840845,
3634
- "contentHash": "dba0ccb1d62a9e2bcfd354eeb22a505d",
3635
- "sourceName": "test/fixtures/gnosis/libraries/SignMessageLib.sol",
3636
- "solcConfig": {
3637
- "version": "0.8.20",
3638
- "settings": {
3639
- "optimizer": {
3640
- "enabled": true,
3641
- "runs": 200
3642
- },
3643
- "evmVersion": "paris",
3644
- "outputSelection": {
3645
- "*": {
3646
- "*": [
3647
- "abi",
3648
- "evm.bytecode",
3649
- "evm.deployedBytecode",
3650
- "evm.methodIdentifiers",
3651
- "metadata"
3652
- ],
3653
- "": [
3654
- "ast"
3655
- ]
3656
- }
3657
- }
3658
- }
3659
- },
3660
- "imports": [
3661
- "./GnosisSafeStorage.sol",
3662
- "../GnosisSafe.sol"
3663
- ],
3664
- "versionPragmas": [
3665
- ">=0.7.0 <0.9.0"
3666
- ],
3667
- "artifacts": [
3668
- "SignMessageLib"
3669
- ]
3670
- },
3671
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/libraries/GnosisSafeStorage.sol": {
3672
- "lastModificationDate": 1731230840845,
3673
- "contentHash": "9e010520759c9b177c06c9654c3169a1",
3674
- "sourceName": "test/fixtures/gnosis/libraries/GnosisSafeStorage.sol",
3675
- "solcConfig": {
3676
- "version": "0.8.20",
3677
- "settings": {
3678
- "optimizer": {
3679
- "enabled": true,
3680
- "runs": 200
3681
- },
3682
- "evmVersion": "paris",
3683
- "outputSelection": {
3684
- "*": {
3685
- "*": [
3686
- "abi",
3687
- "evm.bytecode",
3688
- "evm.deployedBytecode",
3689
- "evm.methodIdentifiers",
3690
- "metadata"
3691
- ],
3692
- "": [
3693
- "ast"
3694
- ]
3695
- }
3696
- }
3697
- }
3698
- },
3699
- "imports": [],
3700
- "versionPragmas": [
3701
- ">=0.7.0 <0.9.0"
3702
- ],
3703
- "artifacts": [
3704
- "GnosisSafeStorage"
3705
- ]
3706
- },
3707
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/GnosisSafeL2.sol": {
3708
- "lastModificationDate": 1731230840841,
3709
- "contentHash": "b7617493b9f2a136251658cc880640e9",
3710
- "sourceName": "test/fixtures/gnosis/GnosisSafeL2.sol",
3711
- "solcConfig": {
3712
- "version": "0.8.20",
3713
- "settings": {
3714
- "optimizer": {
3715
- "enabled": true,
3716
- "runs": 200
3717
- },
3718
- "evmVersion": "paris",
3719
- "outputSelection": {
3720
- "*": {
3721
- "*": [
3722
- "abi",
3723
- "evm.bytecode",
3724
- "evm.deployedBytecode",
3725
- "evm.methodIdentifiers",
3726
- "metadata"
3727
- ],
3728
- "": [
3729
- "ast"
3730
- ]
3731
- }
3732
- }
3733
- }
3734
- },
3735
- "imports": [
3736
- "./GnosisSafe.sol"
3737
- ],
3738
- "versionPragmas": [
3739
- ">=0.7.0 <0.9.0"
3740
- ],
3741
- "artifacts": [
3742
- "GnosisSafeL2"
3743
- ]
3744
- },
3745
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/accessors/SimulateTxAccessor.sol": {
3746
- "lastModificationDate": 1731230840841,
3747
- "contentHash": "54a9a2ed1655e1b79bfc6651f2e3c032",
3748
- "sourceName": "test/fixtures/gnosis/accessors/SimulateTxAccessor.sol",
3749
- "solcConfig": {
3750
- "version": "0.8.20",
3751
- "settings": {
3752
- "optimizer": {
3753
- "enabled": true,
3754
- "runs": 200
3755
- },
3756
- "evmVersion": "paris",
3757
- "outputSelection": {
3758
- "*": {
3759
- "*": [
3760
- "abi",
3761
- "evm.bytecode",
3762
- "evm.deployedBytecode",
3763
- "evm.methodIdentifiers",
3764
- "metadata"
3765
- ],
3766
- "": [
3767
- "ast"
3768
- ]
3769
- }
3770
- }
3771
- }
3772
- },
3773
- "imports": [
3774
- "../base/Executor.sol"
3775
- ],
3776
- "versionPragmas": [
3777
- ">=0.7.0 <0.9.0"
3778
- ],
3779
- "artifacts": [
3780
- "SimulateTxAccessor"
3781
- ]
3782
- },
3783
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/interfaces/ERC1155TokenReceiver.sol": {
3784
- "lastModificationDate": 1731230840841,
3785
- "contentHash": "1d63defb083613ac870a97490f3635ba",
3786
- "sourceName": "test/fixtures/gnosis/interfaces/ERC1155TokenReceiver.sol",
3787
- "solcConfig": {
3788
- "version": "0.8.20",
3789
- "settings": {
3790
- "optimizer": {
3791
- "enabled": true,
3792
- "runs": 200
3793
- },
3794
- "evmVersion": "paris",
3795
- "outputSelection": {
3796
- "*": {
3797
- "*": [
3798
- "abi",
3799
- "evm.bytecode",
3800
- "evm.deployedBytecode",
3801
- "evm.methodIdentifiers",
3802
- "metadata"
3803
- ],
3804
- "": [
3805
- "ast"
3806
- ]
3807
- }
3808
- }
3809
- }
3810
- },
3811
- "imports": [],
3812
- "versionPragmas": [
3813
- ">=0.7.0 <0.9.0"
3814
- ],
3815
- "artifacts": [
3816
- "ERC1155TokenReceiver"
3817
- ]
3818
- },
3819
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/interfaces/ERC721TokenReceiver.sol": {
3820
- "lastModificationDate": 1731230840841,
3821
- "contentHash": "ffac82dd785c225e65d296c1c6596d5a",
3822
- "sourceName": "test/fixtures/gnosis/interfaces/ERC721TokenReceiver.sol",
3823
- "solcConfig": {
3824
- "version": "0.8.20",
3825
- "settings": {
3826
- "optimizer": {
3827
- "enabled": true,
3828
- "runs": 200
3829
- },
3830
- "evmVersion": "paris",
3831
- "outputSelection": {
3832
- "*": {
3833
- "*": [
3834
- "abi",
3835
- "evm.bytecode",
3836
- "evm.deployedBytecode",
3837
- "evm.methodIdentifiers",
3838
- "metadata"
3839
- ],
3840
- "": [
3841
- "ast"
3842
- ]
3843
- }
3844
- }
3845
- }
3846
- },
3847
- "imports": [],
3848
- "versionPragmas": [
3849
- ">=0.7.0 <0.9.0"
3850
- ],
3851
- "artifacts": [
3852
- "ERC721TokenReceiver"
3853
- ]
3854
- },
3855
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/interfaces/ERC777TokensRecipient.sol": {
3856
- "lastModificationDate": 1731230840841,
3857
- "contentHash": "38601f7aa7b8c19d689915aeda071ef0",
3858
- "sourceName": "test/fixtures/gnosis/interfaces/ERC777TokensRecipient.sol",
3859
- "solcConfig": {
3860
- "version": "0.8.20",
3861
- "settings": {
3862
- "optimizer": {
3863
- "enabled": true,
3864
- "runs": 200
3865
- },
3866
- "evmVersion": "paris",
3867
- "outputSelection": {
3868
- "*": {
3869
- "*": [
3870
- "abi",
3871
- "evm.bytecode",
3872
- "evm.deployedBytecode",
3873
- "evm.methodIdentifiers",
3874
- "metadata"
3875
- ],
3876
- "": [
3877
- "ast"
3878
- ]
3879
- }
3880
- }
3881
- }
3882
- },
3883
- "imports": [],
3884
- "versionPragmas": [
3885
- ">=0.7.0 <0.9.0"
3886
- ],
3887
- "artifacts": [
3888
- "ERC777TokensRecipient"
3889
- ]
3890
- },
3891
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/interfaces/ViewStorageAccessible.sol": {
3892
- "lastModificationDate": 1731230840845,
3893
- "contentHash": "466d3a2087ed709159958a4bc7839da9",
3894
- "sourceName": "test/fixtures/gnosis/interfaces/ViewStorageAccessible.sol",
3895
- "solcConfig": {
3896
- "version": "0.8.20",
3897
- "settings": {
3898
- "optimizer": {
3899
- "enabled": true,
3900
- "runs": 200
3901
- },
3902
- "evmVersion": "paris",
3903
- "outputSelection": {
3904
- "*": {
3905
- "*": [
3906
- "abi",
3907
- "evm.bytecode",
3908
- "evm.deployedBytecode",
3909
- "evm.methodIdentifiers",
3910
- "metadata"
3911
- ],
3912
- "": [
3913
- "ast"
3914
- ]
3915
- }
3916
- }
3917
- }
3918
- },
3919
- "imports": [],
3920
- "versionPragmas": [
3921
- ">=0.5.0 <0.9.0"
3922
- ],
3923
- "artifacts": [
3924
- "ViewStorageAccessible"
3925
- ]
3926
- },
3927
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/libraries/CreateCall.sol": {
3928
- "lastModificationDate": 1731230840845,
3929
- "contentHash": "5b39e17ce475af78bc0a7cbdc1472c32",
3930
- "sourceName": "test/fixtures/gnosis/libraries/CreateCall.sol",
3931
- "solcConfig": {
3932
- "version": "0.8.20",
3933
- "settings": {
3934
- "optimizer": {
3935
- "enabled": true,
3936
- "runs": 200
3937
- },
3938
- "evmVersion": "paris",
3939
- "outputSelection": {
3940
- "*": {
3941
- "*": [
3942
- "abi",
3943
- "evm.bytecode",
3944
- "evm.deployedBytecode",
3945
- "evm.methodIdentifiers",
3946
- "metadata"
3947
- ],
3948
- "": [
3949
- "ast"
3950
- ]
3951
- }
3952
- }
3953
- }
3954
- },
3955
- "imports": [],
3956
- "versionPragmas": [
3957
- ">=0.7.0 <0.9.0"
3958
- ],
3959
- "artifacts": [
3960
- "CreateCall"
3961
- ]
3962
- },
3963
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/libraries/MultiSend.sol": {
3964
- "lastModificationDate": 1731230840845,
3965
- "contentHash": "a7b41ac2932ddd3c1d11c7076ace270d",
3966
- "sourceName": "test/fixtures/gnosis/libraries/MultiSend.sol",
3967
- "solcConfig": {
3968
- "version": "0.8.20",
3969
- "settings": {
3970
- "optimizer": {
3971
- "enabled": true,
3972
- "runs": 200
3973
- },
3974
- "evmVersion": "paris",
3975
- "outputSelection": {
3976
- "*": {
3977
- "*": [
3978
- "abi",
3979
- "evm.bytecode",
3980
- "evm.deployedBytecode",
3981
- "evm.methodIdentifiers",
3982
- "metadata"
3983
- ],
3984
- "": [
3985
- "ast"
3986
- ]
3987
- }
3988
- }
3989
- }
3990
- },
3991
- "imports": [],
3992
- "versionPragmas": [
3993
- ">=0.7.0 <0.9.0"
3994
- ],
3995
- "artifacts": [
3996
- "MultiSend"
3997
- ]
3998
- },
3999
- "/home/runner/work/dequanto/dequanto/test/fixtures/gnosis/libraries/MultiSendCallOnly.sol": {
4000
- "lastModificationDate": 1731230840845,
4001
- "contentHash": "121202ac209e67a2a6f0cb22f0133a0a",
4002
- "sourceName": "test/fixtures/gnosis/libraries/MultiSendCallOnly.sol",
4003
- "solcConfig": {
4004
- "version": "0.8.20",
4005
- "settings": {
4006
- "optimizer": {
4007
- "enabled": true,
4008
- "runs": 200
4009
- },
4010
- "evmVersion": "paris",
4011
- "outputSelection": {
4012
- "*": {
4013
- "*": [
4014
- "abi",
4015
- "evm.bytecode",
4016
- "evm.deployedBytecode",
4017
- "evm.methodIdentifiers",
4018
- "metadata"
4019
- ],
4020
- "": [
4021
- "ast"
4022
- ]
4023
- }
4024
- }
4025
- }
4026
- },
4027
- "imports": [],
4028
- "versionPragmas": [
4029
- ">=0.7.0 <0.9.0"
4030
- ],
4031
- "artifacts": [
4032
- "MultiSendCallOnly"
4033
- ]
4034
- },
4035
- "/home/runner/work/dequanto/dequanto/test/fixtures/slots/FooStorage.sol": {
4036
- "lastModificationDate": 1731230840849,
4037
- "contentHash": "fdef4122718f313d174fda17945c4895",
4038
- "sourceName": "test/fixtures/slots/FooStorage.sol",
4039
- "solcConfig": {
4040
- "version": "0.8.20",
4041
- "settings": {
4042
- "optimizer": {
4043
- "enabled": true,
4044
- "runs": 200
4045
- },
4046
- "evmVersion": "paris",
4047
- "outputSelection": {
4048
- "*": {
4049
- "*": [
4050
- "abi",
4051
- "evm.bytecode",
4052
- "evm.deployedBytecode",
4053
- "evm.methodIdentifiers",
4054
- "metadata"
4055
- ],
4056
- "": [
4057
- "ast"
4058
- ]
4059
- }
4060
- }
4061
- }
4062
- },
4063
- "imports": [
4064
- "./FooStorageBase.sol"
4065
- ],
4066
- "versionPragmas": [
4067
- "^0.8.2"
4068
- ],
4069
- "artifacts": [
4070
- "FooStorage"
4071
- ]
4072
- },
4073
- "/home/runner/work/dequanto/dequanto/test/fixtures/slots/FooStorageBase.sol": {
4074
- "lastModificationDate": 1731230840849,
4075
- "contentHash": "9fd12419a8e37da1fc78cf2e3e3eac75",
4076
- "sourceName": "test/fixtures/slots/FooStorageBase.sol",
4077
- "solcConfig": {
4078
- "version": "0.8.20",
4079
- "settings": {
4080
- "optimizer": {
4081
- "enabled": true,
4082
- "runs": 200
4083
- },
4084
- "evmVersion": "paris",
4085
- "outputSelection": {
4086
- "*": {
4087
- "*": [
4088
- "abi",
4089
- "evm.bytecode",
4090
- "evm.deployedBytecode",
4091
- "evm.methodIdentifiers",
4092
- "metadata"
4093
- ],
4094
- "": [
4095
- "ast"
4096
- ]
4097
- }
4098
- }
4099
- }
4100
- },
4101
- "imports": [],
4102
- "versionPragmas": [
4103
- "^0.8.2"
4104
- ],
4105
- "artifacts": [
4106
- "FooStorageBase"
4107
- ]
4108
- },
4109
- "/home/runner/work/dequanto/dequanto/test/fixtures/slots/Vault.sol": {
4110
- "lastModificationDate": 1731230840849,
4111
- "contentHash": "4678541ede978cc710b05a33c2ba6d59",
4112
- "sourceName": "test/fixtures/slots/Vault.sol",
4113
- "solcConfig": {
4114
- "version": "0.8.20",
4115
- "settings": {
4116
- "optimizer": {
4117
- "enabled": true,
4118
- "runs": 200
4119
- },
4120
- "evmVersion": "paris",
4121
- "outputSelection": {
4122
- "*": {
4123
- "*": [
4124
- "abi",
4125
- "evm.bytecode",
4126
- "evm.deployedBytecode",
4127
- "evm.methodIdentifiers",
4128
- "metadata"
4129
- ],
4130
- "": [
4131
- "ast"
4132
- ]
4133
- }
4134
- }
4135
- }
4136
- },
4137
- "imports": [],
4138
- "versionPragmas": [
4139
- "^0.8.2"
4140
- ],
4141
- "artifacts": [
4142
- "Vault"
4143
- ]
4144
- }
4145
- }
4146
- }