lynx-client 0.0.1-beta.9 → 0.0.3

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 (372) hide show
  1. package/README.md +391 -3
  2. package/dist/cjs/index.js +9 -0
  3. package/dist/cjs/lib/addresses/lensAddresses.js +16 -16
  4. package/dist/cjs/lib/chains/chainMappings.js +17 -0
  5. package/dist/cjs/lib/constants/contractEnums.js +1 -0
  6. package/dist/cjs/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.js +2 -0
  7. package/dist/cjs/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.js +22 -0
  8. package/dist/cjs/lib/contractsIntegration/IntentsVerifierLensService/index.js +18 -0
  9. package/dist/cjs/lib/contractsIntegration/LexLensService/ILexLensService.js +137 -0
  10. package/dist/cjs/lib/contractsIntegration/LexLensService/LexLensService.js +250 -0
  11. package/dist/cjs/lib/contractsIntegration/LexLensService/index.js +18 -0
  12. package/dist/cjs/lib/contractsIntegration/OrderBookService/IOrderBookService.js +2 -0
  13. package/dist/cjs/lib/contractsIntegration/OrderBookService/OrderBookService.js +92 -0
  14. package/dist/cjs/lib/contractsIntegration/TradersPortalService/ITradersPortalService.js +2 -0
  15. package/dist/cjs/lib/contractsIntegration/TradersPortalService/TradersPortalServiceService.js +157 -0
  16. package/dist/cjs/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.js +63 -0
  17. package/dist/cjs/lib/contractsIntegration/TradersPortalService/index.js +19 -0
  18. package/dist/cjs/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.js +57 -0
  19. package/dist/cjs/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.js +111 -0
  20. package/dist/cjs/lib/contractsIntegration/TradingFloorLensService/index.js +18 -0
  21. package/dist/cjs/lib/contractsIntegration/TradingFloorService/ITradingFloorService.js +2 -0
  22. package/dist/cjs/lib/contractsIntegration/TradingFloorService/TradingFloorService.js +177 -0
  23. package/dist/cjs/lib/contractsIntegration/TradingFloorService/index.js +5 -0
  24. package/dist/cjs/lib/contractsIntegration/TriggersAndPortalLensService/ITriggersAndPortalLensService.js +30 -0
  25. package/dist/cjs/lib/contractsIntegration/TriggersAndPortalLensService/TriggersAndPortalLensService.js +58 -0
  26. package/dist/cjs/lib/contractsIntegration/TriggersAndPortalLensService/index.js +18 -0
  27. package/dist/cjs/lib/contractsIntegration/TriggersService/ITriggersService.js +2 -0
  28. package/dist/cjs/lib/contractsIntegration/TriggersService/TriggersService.js +188 -0
  29. package/dist/cjs/lib/contractsIntegration/deployedContractsConnector.js +119 -8
  30. package/dist/cjs/lib/devex/getChainAddresses.js +65 -0
  31. package/dist/cjs/lib/devex/getSupportedEngineChains.js +45 -0
  32. package/dist/cjs/lib/devex/index.js +9 -0
  33. package/dist/cjs/lib/devex/types.js +2 -0
  34. package/dist/cjs/lib/lynxSystem/hashes.js +9 -0
  35. package/dist/cjs/lib/lynxSystem/lynxScalesUtils.js +8 -0
  36. package/dist/cjs/lib/lynxSystem/registry/registryReading.js +38 -0
  37. package/dist/cjs/lib/priceFeeds/pyth/pythFeedConstants.js +1 -2
  38. package/dist/cjs/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.js +2 -0
  39. package/dist/cjs/lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.js +2 -0
  40. package/dist/cjs/lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.js +2 -0
  41. package/dist/cjs/lib/typechain/contracts/Lynx/Registry/RegistryProxy.js +2 -0
  42. package/dist/cjs/lib/typechain/contracts/Lynx/Registry/RegistryV1.js +2 -0
  43. package/dist/cjs/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.js +2 -0
  44. package/dist/cjs/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorProxy.js +2 -0
  45. package/dist/cjs/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.js +2 -0
  46. package/dist/cjs/lib/typechain/contracts/Lynx/Triggers/TriggersV1.js +2 -0
  47. package/dist/cjs/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.js +2 -0
  48. package/dist/cjs/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.js +1854 -0
  49. package/dist/cjs/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookProxy__factory.js +258 -0
  50. package/dist/cjs/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.js +539 -0
  51. package/dist/cjs/lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.js +226 -0
  52. package/dist/cjs/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.js +1108 -0
  53. package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.js +1038 -0
  54. package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorProxy__factory.js +258 -0
  55. package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +1991 -0
  56. package/dist/cjs/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.js +1459 -0
  57. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.js +10 -109
  58. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.js +1 -1
  59. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +51 -594
  60. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.js +1 -1
  61. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.js +334 -0
  62. package/dist/cjs/lib/utils/ethersTypes.js +29 -6
  63. package/dist/esm/index.d.ts +8 -0
  64. package/dist/esm/index.d.ts.map +1 -1
  65. package/dist/esm/index.js +9 -0
  66. package/dist/esm/lib/addresses/lensAddresses.d.ts +16 -16
  67. package/dist/esm/lib/addresses/lensAddresses.js +16 -16
  68. package/dist/esm/lib/chains/chainMappings.d.ts +13 -0
  69. package/dist/esm/lib/chains/chainMappings.d.ts.map +1 -0
  70. package/dist/esm/lib/chains/chainMappings.js +17 -0
  71. package/dist/esm/lib/chains/chainTypes.d.ts +3 -0
  72. package/dist/esm/lib/chains/chainTypes.d.ts.map +1 -1
  73. package/dist/esm/lib/constants/contractEnums.d.ts.map +1 -1
  74. package/dist/esm/lib/constants/contractEnums.js +1 -0
  75. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts +7 -0
  76. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts.map +1 -0
  77. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.js +2 -0
  78. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts +11 -0
  79. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts.map +1 -0
  80. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.js +22 -0
  81. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/index.d.ts +3 -0
  82. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/index.d.ts.map +1 -0
  83. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/index.js +18 -0
  84. package/dist/esm/lib/contractsIntegration/LexLensService/ILexLensService.d.ts +85 -0
  85. package/dist/esm/lib/contractsIntegration/LexLensService/ILexLensService.d.ts.map +1 -0
  86. package/dist/esm/lib/contractsIntegration/LexLensService/ILexLensService.js +137 -0
  87. package/dist/esm/lib/contractsIntegration/LexLensService/LexLensService.d.ts +34 -0
  88. package/dist/esm/lib/contractsIntegration/LexLensService/LexLensService.d.ts.map +1 -0
  89. package/dist/esm/lib/contractsIntegration/LexLensService/LexLensService.js +250 -0
  90. package/dist/esm/lib/contractsIntegration/LexLensService/index.d.ts +3 -0
  91. package/dist/esm/lib/contractsIntegration/LexLensService/index.d.ts.map +1 -0
  92. package/dist/esm/lib/contractsIntegration/LexLensService/index.js +18 -0
  93. package/dist/esm/lib/contractsIntegration/OrderBookService/IOrderBookService.d.ts +40 -0
  94. package/dist/esm/lib/contractsIntegration/OrderBookService/IOrderBookService.d.ts.map +1 -0
  95. package/dist/esm/lib/contractsIntegration/OrderBookService/IOrderBookService.js +2 -0
  96. package/dist/esm/lib/contractsIntegration/OrderBookService/OrderBookService.d.ts +12 -0
  97. package/dist/esm/lib/contractsIntegration/OrderBookService/OrderBookService.d.ts.map +1 -0
  98. package/dist/esm/lib/contractsIntegration/OrderBookService/OrderBookService.js +92 -0
  99. package/dist/esm/lib/contractsIntegration/TradersPortalService/ITradersPortalService.d.ts +61 -0
  100. package/dist/esm/lib/contractsIntegration/TradersPortalService/ITradersPortalService.d.ts.map +1 -0
  101. package/dist/esm/lib/contractsIntegration/TradersPortalService/ITradersPortalService.js +2 -0
  102. package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalServiceService.d.ts +14 -0
  103. package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalServiceService.d.ts.map +1 -0
  104. package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalServiceService.js +157 -0
  105. package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts +31 -0
  106. package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts.map +1 -0
  107. package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.js +63 -0
  108. package/dist/esm/lib/contractsIntegration/TradersPortalService/index.d.ts +4 -0
  109. package/dist/esm/lib/contractsIntegration/TradersPortalService/index.d.ts.map +1 -0
  110. package/dist/esm/lib/contractsIntegration/TradersPortalService/index.js +19 -0
  111. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts +65 -0
  112. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts.map +1 -0
  113. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.js +57 -0
  114. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts +13 -0
  115. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts.map +1 -0
  116. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.js +111 -0
  117. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/index.d.ts +3 -0
  118. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/index.d.ts.map +1 -0
  119. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/index.js +18 -0
  120. package/dist/esm/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts +89 -0
  121. package/dist/esm/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts.map +1 -0
  122. package/dist/esm/lib/contractsIntegration/TradingFloorService/ITradingFloorService.js +2 -0
  123. package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts +86 -0
  124. package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts.map +1 -0
  125. package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.js +177 -0
  126. package/dist/esm/lib/contractsIntegration/TradingFloorService/index.d.ts +3 -0
  127. package/dist/esm/lib/contractsIntegration/TradingFloorService/index.d.ts.map +1 -0
  128. package/dist/esm/lib/contractsIntegration/TradingFloorService/index.js +5 -0
  129. package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/ITriggersAndPortalLensService.d.ts +33 -0
  130. package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/ITriggersAndPortalLensService.d.ts.map +1 -0
  131. package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/ITriggersAndPortalLensService.js +30 -0
  132. package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/TriggersAndPortalLensService.d.ts +11 -0
  133. package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/TriggersAndPortalLensService.d.ts.map +1 -0
  134. package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/TriggersAndPortalLensService.js +58 -0
  135. package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/index.d.ts +3 -0
  136. package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/index.d.ts.map +1 -0
  137. package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/index.js +18 -0
  138. package/dist/esm/lib/contractsIntegration/TriggersService/ITriggersService.d.ts +73 -0
  139. package/dist/esm/lib/contractsIntegration/TriggersService/ITriggersService.d.ts.map +1 -0
  140. package/dist/esm/lib/contractsIntegration/TriggersService/ITriggersService.js +2 -0
  141. package/dist/esm/lib/contractsIntegration/TriggersService/TriggersService.d.ts +18 -0
  142. package/dist/esm/lib/contractsIntegration/TriggersService/TriggersService.d.ts.map +1 -0
  143. package/dist/esm/lib/contractsIntegration/TriggersService/TriggersService.js +188 -0
  144. package/dist/esm/lib/contractsIntegration/deployedContractsConnector.d.ts +44 -5
  145. package/dist/esm/lib/contractsIntegration/deployedContractsConnector.d.ts.map +1 -1
  146. package/dist/esm/lib/contractsIntegration/deployedContractsConnector.js +119 -8
  147. package/dist/esm/lib/devex/getChainAddresses.d.ts +20 -0
  148. package/dist/esm/lib/devex/getChainAddresses.d.ts.map +1 -0
  149. package/dist/esm/lib/devex/getChainAddresses.js +65 -0
  150. package/dist/esm/lib/devex/getSupportedEngineChains.d.ts +37 -0
  151. package/dist/esm/lib/devex/getSupportedEngineChains.d.ts.map +1 -0
  152. package/dist/esm/lib/devex/getSupportedEngineChains.js +45 -0
  153. package/dist/esm/lib/devex/index.d.ts +5 -0
  154. package/dist/esm/lib/devex/index.d.ts.map +1 -0
  155. package/dist/esm/lib/devex/index.js +9 -0
  156. package/dist/esm/lib/devex/types.d.ts +20 -0
  157. package/dist/esm/lib/devex/types.d.ts.map +1 -0
  158. package/dist/esm/lib/devex/types.js +2 -0
  159. package/dist/esm/lib/lynxSystem/hashes.d.ts +6 -0
  160. package/dist/esm/lib/lynxSystem/hashes.d.ts.map +1 -1
  161. package/dist/esm/lib/lynxSystem/hashes.js +9 -0
  162. package/dist/esm/lib/lynxSystem/lynxScalesUtils.d.ts +2 -0
  163. package/dist/esm/lib/lynxSystem/lynxScalesUtils.d.ts.map +1 -1
  164. package/dist/esm/lib/lynxSystem/lynxScalesUtils.js +8 -0
  165. package/dist/esm/lib/lynxSystem/registry/registryReading.d.ts +9 -0
  166. package/dist/esm/lib/lynxSystem/registry/registryReading.d.ts.map +1 -0
  167. package/dist/esm/lib/lynxSystem/registry/registryReading.js +38 -0
  168. package/dist/esm/lib/priceFeeds/pyth/pythFeedConstants.d.ts.map +1 -1
  169. package/dist/esm/lib/priceFeeds/pyth/pythFeedConstants.js +1 -2
  170. package/dist/esm/lib/typechain/common.d.ts.map +1 -1
  171. package/dist/esm/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.d.ts +1084 -0
  172. package/dist/esm/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.d.ts.map +1 -0
  173. package/dist/esm/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.js +2 -0
  174. package/dist/esm/lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.d.ts +151 -0
  175. package/dist/esm/lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.d.ts.map +1 -0
  176. package/dist/esm/lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.js +2 -0
  177. package/dist/esm/lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.d.ts +268 -0
  178. package/dist/esm/lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.d.ts.map +1 -0
  179. package/dist/esm/lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.js +2 -0
  180. package/dist/esm/lib/typechain/contracts/Lynx/Registry/RegistryProxy.d.ts +143 -0
  181. package/dist/esm/lib/typechain/contracts/Lynx/Registry/RegistryProxy.d.ts.map +1 -0
  182. package/dist/esm/lib/typechain/contracts/Lynx/Registry/RegistryProxy.js +2 -0
  183. package/dist/esm/lib/typechain/contracts/Lynx/Registry/RegistryV1.d.ts +603 -0
  184. package/dist/esm/lib/typechain/contracts/Lynx/Registry/RegistryV1.d.ts.map +1 -0
  185. package/dist/esm/lib/typechain/contracts/Lynx/Registry/RegistryV1.js +2 -0
  186. package/dist/esm/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts +607 -0
  187. package/dist/esm/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts.map +1 -0
  188. package/dist/esm/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.js +2 -0
  189. package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorProxy.d.ts +151 -0
  190. package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorProxy.d.ts.map +1 -0
  191. package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorProxy.js +2 -0
  192. package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts +1251 -0
  193. package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts.map +1 -0
  194. package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.js +2 -0
  195. package/dist/esm/lib/typechain/contracts/Lynx/Triggers/TriggersV1.d.ts +977 -0
  196. package/dist/esm/lib/typechain/contracts/Lynx/Triggers/TriggersV1.d.ts.map +1 -0
  197. package/dist/esm/lib/typechain/contracts/Lynx/Triggers/TriggersV1.js +2 -0
  198. package/dist/esm/lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts +10 -65
  199. package/dist/esm/lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts.map +1 -1
  200. package/dist/esm/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts +34 -114
  201. package/dist/esm/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts.map +1 -1
  202. package/dist/esm/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.d.ts +158 -0
  203. package/dist/esm/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.d.ts.map +1 -0
  204. package/dist/esm/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.js +2 -0
  205. package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts +1425 -0
  206. package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts.map +1 -0
  207. package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.js +1854 -0
  208. package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookProxy__factory.d.ts +193 -0
  209. package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookProxy__factory.d.ts.map +1 -0
  210. package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookProxy__factory.js +258 -0
  211. package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts +407 -0
  212. package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts.map +1 -0
  213. package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.js +539 -0
  214. package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.d.ts +169 -0
  215. package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.d.ts.map +1 -0
  216. package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.js +226 -0
  217. package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts +841 -0
  218. package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts.map +1 -0
  219. package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.js +1108 -0
  220. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts +800 -0
  221. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts.map +1 -0
  222. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.js +1038 -0
  223. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorProxy__factory.d.ts +193 -0
  224. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorProxy__factory.d.ts.map +1 -0
  225. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorProxy__factory.js +258 -0
  226. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +1536 -0
  227. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -0
  228. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +1991 -0
  229. package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts +1135 -0
  230. package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts.map +1 -0
  231. package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.js +1459 -0
  232. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts +10 -85
  233. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts.map +1 -1
  234. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.js +10 -109
  235. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts +1 -1
  236. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.js +1 -1
  237. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +13 -442
  238. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts.map +1 -1
  239. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +51 -594
  240. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts +1 -1
  241. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.js +1 -1
  242. package/dist/esm/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.d.ts +251 -0
  243. package/dist/esm/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.d.ts.map +1 -0
  244. package/dist/esm/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.js +334 -0
  245. package/dist/esm/lib/utils/ethersTypes.d.ts +2 -2
  246. package/dist/esm/lib/utils/ethersTypes.d.ts.map +1 -1
  247. package/dist/esm/lib/utils/ethersTypes.js +29 -6
  248. package/dist/types/index.d.ts +8 -0
  249. package/dist/types/index.d.ts.map +1 -1
  250. package/dist/types/lib/addresses/lensAddresses.d.ts +16 -16
  251. package/dist/types/lib/chains/chainMappings.d.ts +13 -0
  252. package/dist/types/lib/chains/chainMappings.d.ts.map +1 -0
  253. package/dist/types/lib/chains/chainTypes.d.ts +3 -0
  254. package/dist/types/lib/chains/chainTypes.d.ts.map +1 -1
  255. package/dist/types/lib/constants/contractEnums.d.ts.map +1 -1
  256. package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts +7 -0
  257. package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts.map +1 -0
  258. package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts +11 -0
  259. package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts.map +1 -0
  260. package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/index.d.ts +3 -0
  261. package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/index.d.ts.map +1 -0
  262. package/dist/types/lib/contractsIntegration/LexLensService/ILexLensService.d.ts +85 -0
  263. package/dist/types/lib/contractsIntegration/LexLensService/ILexLensService.d.ts.map +1 -0
  264. package/dist/types/lib/contractsIntegration/LexLensService/LexLensService.d.ts +34 -0
  265. package/dist/types/lib/contractsIntegration/LexLensService/LexLensService.d.ts.map +1 -0
  266. package/dist/types/lib/contractsIntegration/LexLensService/index.d.ts +3 -0
  267. package/dist/types/lib/contractsIntegration/LexLensService/index.d.ts.map +1 -0
  268. package/dist/types/lib/contractsIntegration/OrderBookService/IOrderBookService.d.ts +40 -0
  269. package/dist/types/lib/contractsIntegration/OrderBookService/IOrderBookService.d.ts.map +1 -0
  270. package/dist/types/lib/contractsIntegration/OrderBookService/OrderBookService.d.ts +12 -0
  271. package/dist/types/lib/contractsIntegration/OrderBookService/OrderBookService.d.ts.map +1 -0
  272. package/dist/types/lib/contractsIntegration/TradersPortalService/ITradersPortalService.d.ts +61 -0
  273. package/dist/types/lib/contractsIntegration/TradersPortalService/ITradersPortalService.d.ts.map +1 -0
  274. package/dist/types/lib/contractsIntegration/TradersPortalService/TradersPortalServiceService.d.ts +14 -0
  275. package/dist/types/lib/contractsIntegration/TradersPortalService/TradersPortalServiceService.d.ts.map +1 -0
  276. package/dist/types/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts +31 -0
  277. package/dist/types/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts.map +1 -0
  278. package/dist/types/lib/contractsIntegration/TradersPortalService/index.d.ts +4 -0
  279. package/dist/types/lib/contractsIntegration/TradersPortalService/index.d.ts.map +1 -0
  280. package/dist/types/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts +65 -0
  281. package/dist/types/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts.map +1 -0
  282. package/dist/types/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts +13 -0
  283. package/dist/types/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts.map +1 -0
  284. package/dist/types/lib/contractsIntegration/TradingFloorLensService/index.d.ts +3 -0
  285. package/dist/types/lib/contractsIntegration/TradingFloorLensService/index.d.ts.map +1 -0
  286. package/dist/types/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts +89 -0
  287. package/dist/types/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts.map +1 -0
  288. package/dist/types/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts +86 -0
  289. package/dist/types/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts.map +1 -0
  290. package/dist/types/lib/contractsIntegration/TradingFloorService/index.d.ts +3 -0
  291. package/dist/types/lib/contractsIntegration/TradingFloorService/index.d.ts.map +1 -0
  292. package/dist/types/lib/contractsIntegration/TriggersAndPortalLensService/ITriggersAndPortalLensService.d.ts +33 -0
  293. package/dist/types/lib/contractsIntegration/TriggersAndPortalLensService/ITriggersAndPortalLensService.d.ts.map +1 -0
  294. package/dist/types/lib/contractsIntegration/TriggersAndPortalLensService/TriggersAndPortalLensService.d.ts +11 -0
  295. package/dist/types/lib/contractsIntegration/TriggersAndPortalLensService/TriggersAndPortalLensService.d.ts.map +1 -0
  296. package/dist/types/lib/contractsIntegration/TriggersAndPortalLensService/index.d.ts +3 -0
  297. package/dist/types/lib/contractsIntegration/TriggersAndPortalLensService/index.d.ts.map +1 -0
  298. package/dist/types/lib/contractsIntegration/TriggersService/ITriggersService.d.ts +73 -0
  299. package/dist/types/lib/contractsIntegration/TriggersService/ITriggersService.d.ts.map +1 -0
  300. package/dist/types/lib/contractsIntegration/TriggersService/TriggersService.d.ts +18 -0
  301. package/dist/types/lib/contractsIntegration/TriggersService/TriggersService.d.ts.map +1 -0
  302. package/dist/types/lib/contractsIntegration/deployedContractsConnector.d.ts +44 -5
  303. package/dist/types/lib/contractsIntegration/deployedContractsConnector.d.ts.map +1 -1
  304. package/dist/types/lib/devex/getChainAddresses.d.ts +20 -0
  305. package/dist/types/lib/devex/getChainAddresses.d.ts.map +1 -0
  306. package/dist/types/lib/devex/getSupportedEngineChains.d.ts +37 -0
  307. package/dist/types/lib/devex/getSupportedEngineChains.d.ts.map +1 -0
  308. package/dist/types/lib/devex/index.d.ts +5 -0
  309. package/dist/types/lib/devex/index.d.ts.map +1 -0
  310. package/dist/types/lib/devex/types.d.ts +20 -0
  311. package/dist/types/lib/devex/types.d.ts.map +1 -0
  312. package/dist/types/lib/lynxSystem/hashes.d.ts +6 -0
  313. package/dist/types/lib/lynxSystem/hashes.d.ts.map +1 -1
  314. package/dist/types/lib/lynxSystem/lynxScalesUtils.d.ts +2 -0
  315. package/dist/types/lib/lynxSystem/lynxScalesUtils.d.ts.map +1 -1
  316. package/dist/types/lib/lynxSystem/registry/registryReading.d.ts +9 -0
  317. package/dist/types/lib/lynxSystem/registry/registryReading.d.ts.map +1 -0
  318. package/dist/types/lib/priceFeeds/pyth/pythFeedConstants.d.ts.map +1 -1
  319. package/dist/types/lib/typechain/common.d.ts.map +1 -1
  320. package/dist/types/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.d.ts +1084 -0
  321. package/dist/types/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.d.ts.map +1 -0
  322. package/dist/types/lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.d.ts +151 -0
  323. package/dist/types/lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.d.ts.map +1 -0
  324. package/dist/types/lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.d.ts +268 -0
  325. package/dist/types/lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.d.ts.map +1 -0
  326. package/dist/types/lib/typechain/contracts/Lynx/Registry/RegistryProxy.d.ts +143 -0
  327. package/dist/types/lib/typechain/contracts/Lynx/Registry/RegistryProxy.d.ts.map +1 -0
  328. package/dist/types/lib/typechain/contracts/Lynx/Registry/RegistryV1.d.ts +603 -0
  329. package/dist/types/lib/typechain/contracts/Lynx/Registry/RegistryV1.d.ts.map +1 -0
  330. package/dist/types/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts +607 -0
  331. package/dist/types/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts.map +1 -0
  332. package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorProxy.d.ts +151 -0
  333. package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorProxy.d.ts.map +1 -0
  334. package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts +1251 -0
  335. package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts.map +1 -0
  336. package/dist/types/lib/typechain/contracts/Lynx/Triggers/TriggersV1.d.ts +977 -0
  337. package/dist/types/lib/typechain/contracts/Lynx/Triggers/TriggersV1.d.ts.map +1 -0
  338. package/dist/types/lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts +10 -65
  339. package/dist/types/lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts.map +1 -1
  340. package/dist/types/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts +34 -114
  341. package/dist/types/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts.map +1 -1
  342. package/dist/types/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.d.ts +158 -0
  343. package/dist/types/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.d.ts.map +1 -0
  344. package/dist/types/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts +1425 -0
  345. package/dist/types/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts.map +1 -0
  346. package/dist/types/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookProxy__factory.d.ts +193 -0
  347. package/dist/types/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookProxy__factory.d.ts.map +1 -0
  348. package/dist/types/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts +407 -0
  349. package/dist/types/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts.map +1 -0
  350. package/dist/types/lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.d.ts +169 -0
  351. package/dist/types/lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.d.ts.map +1 -0
  352. package/dist/types/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts +841 -0
  353. package/dist/types/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts.map +1 -0
  354. package/dist/types/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts +800 -0
  355. package/dist/types/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts.map +1 -0
  356. package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorProxy__factory.d.ts +193 -0
  357. package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorProxy__factory.d.ts.map +1 -0
  358. package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +1536 -0
  359. package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -0
  360. package/dist/types/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts +1135 -0
  361. package/dist/types/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts.map +1 -0
  362. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts +10 -85
  363. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts.map +1 -1
  364. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts +1 -1
  365. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +13 -442
  366. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts.map +1 -1
  367. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts +1 -1
  368. package/dist/types/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.d.ts +251 -0
  369. package/dist/types/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.d.ts.map +1 -0
  370. package/dist/types/lib/utils/ethersTypes.d.ts +2 -2
  371. package/dist/types/lib/utils/ethersTypes.d.ts.map +1 -1
  372. package/package.json +7 -7
@@ -0,0 +1,169 @@
1
+ import { ContractFactory, ContractTransactionResponse } from "ethers";
2
+ import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
3
+ import type { NonPayableOverrides } from "../../../../common";
4
+ import type { RegistryProxy, RegistryProxyInterface } from "../../../../contracts/Lynx/Registry/RegistryProxy";
5
+ type RegistryProxyConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
6
+ export declare class RegistryProxy__factory extends ContractFactory {
7
+ constructor(...args: RegistryProxyConstructorParams);
8
+ getDeployTransaction(overrides?: NonPayableOverrides & {
9
+ from?: string;
10
+ }): Promise<ContractDeployTransaction>;
11
+ deploy(overrides?: NonPayableOverrides & {
12
+ from?: string;
13
+ }): Promise<RegistryProxy & {
14
+ deploymentTransaction(): ContractTransactionResponse;
15
+ }>;
16
+ connect(runner: ContractRunner | null): RegistryProxy__factory;
17
+ static readonly bytecode = "0x608060405234801561001057600080fd5b50600080546001600160a01b0319908116339182161781178255604080519283526020830182905290917ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc910160405180910390a150610636806100756000396000f3fe60806040526004361061007f5760003560e01c8063c1e803341161004e578063c1e80334146101a0578063e992a041146101c3578063e9c714f2146101e3578063f851a440146101f857610086565b80632678224714610103578063396f7b23146101405780635c60da1b14610160578063b71d1a0c1461018057610086565b3661008657005b6002546040516000916001600160a01b0316906100a690839036906105c0565b600060405180830381855af49150503d80600081146100e1576040519150601f19603f3d011682016040523d82523d6000602084013e6100e6565b606091505b505090506040513d6000823e8180156100fd573d82f35b3d82fd5b005b34801561010f57600080fd5b50600154610123906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561014c57600080fd5b50600354610123906001600160a01b031681565b34801561016c57600080fd5b50600254610123906001600160a01b031681565b34801561018c57600080fd5b5061010161019b3660046105d0565b610218565b3480156101ac57600080fd5b506101b56102c5565b604051908152602001610137565b3480156101cf57600080fd5b506101016101de3660046105d0565b610402565b3480156101ef57600080fd5b506101016104a2565b34801561020457600080fd5b50600054610123906001600160a01b031681565b6000546001600160a01b031633146102635760405162461bcd60e51b81526020600482015260096024820152682737ba1020b236b4b760b91b60448201526064015b60405180910390fd5b600180546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a991015b60405180910390a15050565b6003546000906001600160a01b0316331480156102ec57506003546001600160a01b031615155b6103485760405162461bcd60e51b815260206004820152602760248201527f4e6f7420746865204558495354494e472070656e64696e6720696d706c656d65604482015266373a30ba34b7b760c91b606482015260840161025a565b60028054600380546001600160a01b038082166001600160a01b031980861682179096559490911690915560408051919092168082526020820184905292917fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a910160405180910390a1600354604080516001600160a01b03808516825290921660208301527fe945ccee5d701fc83f9b8aa8ca94ea4219ec1fcbd4f4cab4f0ea57c5c3e1d815910160405180910390a160009250505090565b6000546001600160a01b031633146104485760405162461bcd60e51b81526020600482015260096024820152683737ba1030b236b4b760b91b604482015260640161025a565b600380546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527fe945ccee5d701fc83f9b8aa8ca94ea4219ec1fcbd4f4cab4f0ea57c5c3e1d81591016102b9565b6001546001600160a01b0316331480156104c657506001546001600160a01b031615155b6105125760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420746865204558495354494e472070656e64696e672061646d696e0000604482015260640161025a565b60008054600180546001600160a01b038082166001600160a01b031980861682179096559490911690915560408051919092168082526020820184905292917ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc910160405180910390a1600154604080516001600160a01b03808516825290921660208301527fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a991016102b9565b8183823760009101908152919050565b6000602082840312156105e257600080fd5b81356001600160a01b03811681146105f957600080fd5b939250505056fea264697066735822122052f7788b7b3dd7e4d5c9ac1cc1b3fe9ac135f85e8adeefcbb335755ebca84cf564736f6c63430008180033";
18
+ static readonly abi: readonly [{
19
+ readonly inputs: readonly [];
20
+ readonly stateMutability: "nonpayable";
21
+ readonly type: "constructor";
22
+ }, {
23
+ readonly anonymous: false;
24
+ readonly inputs: readonly [{
25
+ readonly indexed: false;
26
+ readonly internalType: "address";
27
+ readonly name: "oldAdmin";
28
+ readonly type: "address";
29
+ }, {
30
+ readonly indexed: false;
31
+ readonly internalType: "address";
32
+ readonly name: "newAdmin";
33
+ readonly type: "address";
34
+ }];
35
+ readonly name: "NewAdmin";
36
+ readonly type: "event";
37
+ }, {
38
+ readonly anonymous: false;
39
+ readonly inputs: readonly [{
40
+ readonly indexed: false;
41
+ readonly internalType: "address";
42
+ readonly name: "oldImplementation";
43
+ readonly type: "address";
44
+ }, {
45
+ readonly indexed: false;
46
+ readonly internalType: "address";
47
+ readonly name: "newImplementation";
48
+ readonly type: "address";
49
+ }];
50
+ readonly name: "NewImplementation";
51
+ readonly type: "event";
52
+ }, {
53
+ readonly anonymous: false;
54
+ readonly inputs: readonly [{
55
+ readonly indexed: false;
56
+ readonly internalType: "address";
57
+ readonly name: "oldPendingAdmin";
58
+ readonly type: "address";
59
+ }, {
60
+ readonly indexed: false;
61
+ readonly internalType: "address";
62
+ readonly name: "newPendingAdmin";
63
+ readonly type: "address";
64
+ }];
65
+ readonly name: "NewPendingAdmin";
66
+ readonly type: "event";
67
+ }, {
68
+ readonly anonymous: false;
69
+ readonly inputs: readonly [{
70
+ readonly indexed: false;
71
+ readonly internalType: "address";
72
+ readonly name: "oldPendingImplementation";
73
+ readonly type: "address";
74
+ }, {
75
+ readonly indexed: false;
76
+ readonly internalType: "address";
77
+ readonly name: "newPendingImplementation";
78
+ readonly type: "address";
79
+ }];
80
+ readonly name: "NewPendingImplementation";
81
+ readonly type: "event";
82
+ }, {
83
+ readonly stateMutability: "payable";
84
+ readonly type: "fallback";
85
+ }, {
86
+ readonly inputs: readonly [];
87
+ readonly name: "_acceptAdmin";
88
+ readonly outputs: readonly [];
89
+ readonly stateMutability: "nonpayable";
90
+ readonly type: "function";
91
+ }, {
92
+ readonly inputs: readonly [];
93
+ readonly name: "_acceptImplementation";
94
+ readonly outputs: readonly [{
95
+ readonly internalType: "uint256";
96
+ readonly name: "";
97
+ readonly type: "uint256";
98
+ }];
99
+ readonly stateMutability: "nonpayable";
100
+ readonly type: "function";
101
+ }, {
102
+ readonly inputs: readonly [{
103
+ readonly internalType: "address";
104
+ readonly name: "newPendingAdmin";
105
+ readonly type: "address";
106
+ }];
107
+ readonly name: "_setPendingAdmin";
108
+ readonly outputs: readonly [];
109
+ readonly stateMutability: "nonpayable";
110
+ readonly type: "function";
111
+ }, {
112
+ readonly inputs: readonly [{
113
+ readonly internalType: "address";
114
+ readonly name: "newPendingImplementation";
115
+ readonly type: "address";
116
+ }];
117
+ readonly name: "_setPendingImplementation";
118
+ readonly outputs: readonly [];
119
+ readonly stateMutability: "nonpayable";
120
+ readonly type: "function";
121
+ }, {
122
+ readonly inputs: readonly [];
123
+ readonly name: "admin";
124
+ readonly outputs: readonly [{
125
+ readonly internalType: "address";
126
+ readonly name: "";
127
+ readonly type: "address";
128
+ }];
129
+ readonly stateMutability: "view";
130
+ readonly type: "function";
131
+ }, {
132
+ readonly inputs: readonly [];
133
+ readonly name: "implementation";
134
+ readonly outputs: readonly [{
135
+ readonly internalType: "address";
136
+ readonly name: "";
137
+ readonly type: "address";
138
+ }];
139
+ readonly stateMutability: "view";
140
+ readonly type: "function";
141
+ }, {
142
+ readonly inputs: readonly [];
143
+ readonly name: "pendingAdmin";
144
+ readonly outputs: readonly [{
145
+ readonly internalType: "address";
146
+ readonly name: "";
147
+ readonly type: "address";
148
+ }];
149
+ readonly stateMutability: "view";
150
+ readonly type: "function";
151
+ }, {
152
+ readonly inputs: readonly [];
153
+ readonly name: "pendingImplementation";
154
+ readonly outputs: readonly [{
155
+ readonly internalType: "address";
156
+ readonly name: "";
157
+ readonly type: "address";
158
+ }];
159
+ readonly stateMutability: "view";
160
+ readonly type: "function";
161
+ }, {
162
+ readonly stateMutability: "payable";
163
+ readonly type: "receive";
164
+ }];
165
+ static createInterface(): RegistryProxyInterface;
166
+ static connect(address: string, runner?: ContractRunner | null): RegistryProxy;
167
+ }
168
+ export {};
169
+ //# sourceMappingURL=RegistryProxy__factory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RegistryProxy__factory.d.ts","sourceRoot":"","sources":["../../../../../../../../lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.ts"],"names":[],"mappings":"AAGA,OAAO,EAEL,eAAe,EACf,2BAA2B,EAE5B,MAAM,QAAQ,CAAC;AAChB,OAAO,KAAK,EAAE,MAAM,EAAE,yBAAyB,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAChF,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AAC9D,OAAO,KAAK,EACV,aAAa,EACb,sBAAsB,EACvB,MAAM,mDAAmD,CAAC;AAmM3D,KAAK,8BAA8B,GAC/B,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,GACjB,qBAAqB,CAAC,OAAO,eAAe,CAAC,CAAC;AAMlD,qBAAa,sBAAuB,SAAQ,eAAe;gBAC7C,GAAG,IAAI,EAAE,8BAA8B;IAQ1C,oBAAoB,CAC3B,SAAS,CAAC,EAAE,mBAAmB,GAAG;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAClD,OAAO,CAAC,yBAAyB,CAAC;IAG5B,MAAM,CAAC,SAAS,CAAC,EAAE,mBAAmB,GAAG;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GACzB,OAAO,CAC7C,aAAa,GAAG;QACd,qBAAqB,IAAI,2BAA2B,CAAC;KACtD,CACF;IAEM,OAAO,CAAC,MAAM,EAAE,cAAc,GAAG,IAAI,GAAG,sBAAsB;IAIvE,MAAM,CAAC,QAAQ,CAAC,QAAQ,81GAAa;IACrC,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,sBAAsB;IAGhD,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,MAAM,CAAC,EAAE,cAAc,GAAG,IAAI,GAC7B,aAAa;CAGjB"}