lynx-client 0.0.2 → 0.0.4

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 (238) hide show
  1. package/README.md +0 -1
  2. package/dist/cjs/index.js +12 -0
  3. package/dist/cjs/lib/addresses/lensAddresses.js +16 -16
  4. package/dist/cjs/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.js +91 -0
  5. package/dist/cjs/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.js +2 -0
  6. package/dist/cjs/lib/contractsIntegration/ChipsIntentsVerifierService/index.js +5 -0
  7. package/dist/cjs/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.js +0 -13
  8. package/dist/cjs/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.js +6 -26
  9. package/dist/cjs/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.js +2 -0
  10. package/dist/cjs/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.js +70 -0
  11. package/dist/cjs/lib/contractsIntegration/LiquidityIntentsVerifierService/index.js +5 -0
  12. package/dist/cjs/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.js +2 -0
  13. package/dist/cjs/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.js +99 -0
  14. package/dist/cjs/lib/contractsIntegration/TradeIntentsVerifierService/index.js +5 -0
  15. package/dist/cjs/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.js +0 -1
  16. package/dist/cjs/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.js +3 -7
  17. package/dist/cjs/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.js +11 -47
  18. package/dist/cjs/lib/contractsIntegration/TradingFloorService/TradingFloorService.js +28 -9
  19. package/dist/cjs/lib/contractsIntegration/TradingFloorService/index.js +5 -0
  20. package/dist/cjs/lib/contractsIntegration/deployedContractsConnector.js +45 -0
  21. package/dist/cjs/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.js +2 -0
  22. package/dist/cjs/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.js +2 -0
  23. package/dist/cjs/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.js +2 -0
  24. package/dist/cjs/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.js +2 -0
  25. package/dist/cjs/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.js +2 -0
  26. package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.js +1129 -0
  27. package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.js +870 -0
  28. package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.js +1561 -0
  29. package/dist/cjs/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.js +1854 -0
  30. package/dist/cjs/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.js +1 -1
  31. package/dist/cjs/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.js +1 -1
  32. package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.js +78 -6
  33. package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +297 -80
  34. package/dist/cjs/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.js +1 -1
  35. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.js +10 -109
  36. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.js +1 -1
  37. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +51 -594
  38. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.js +1 -1
  39. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.js +334 -0
  40. package/dist/esm/index.d.ts +10 -0
  41. package/dist/esm/index.d.ts.map +1 -1
  42. package/dist/esm/index.js +12 -0
  43. package/dist/esm/lib/addresses/lensAddresses.d.ts +16 -16
  44. package/dist/esm/lib/addresses/lensAddresses.js +16 -16
  45. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts +29 -0
  46. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts.map +1 -0
  47. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.js +91 -0
  48. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts +24 -0
  49. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts.map +1 -0
  50. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.js +2 -0
  51. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts +4 -0
  52. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts.map +1 -0
  53. package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/index.js +5 -0
  54. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts +3 -16
  55. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts.map +1 -1
  56. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.js +0 -13
  57. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts +5 -5
  58. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts.map +1 -1
  59. package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.js +6 -26
  60. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts +17 -0
  61. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts.map +1 -0
  62. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.js +2 -0
  63. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts +22 -0
  64. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts.map +1 -0
  65. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.js +70 -0
  66. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts +4 -0
  67. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts.map +1 -0
  68. package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/index.js +5 -0
  69. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts +24 -0
  70. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts.map +1 -0
  71. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.js +2 -0
  72. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts +29 -0
  73. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts.map +1 -0
  74. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.js +99 -0
  75. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts +4 -0
  76. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts.map +1 -0
  77. package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/index.js +5 -0
  78. package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts +0 -1
  79. package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts.map +1 -1
  80. package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.js +0 -1
  81. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts +10 -21
  82. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts.map +1 -1
  83. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.js +3 -7
  84. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts +1 -4
  85. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts.map +1 -1
  86. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.js +11 -47
  87. package/dist/esm/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts +10 -4
  88. package/dist/esm/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts.map +1 -1
  89. package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts +10 -4
  90. package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts.map +1 -1
  91. package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.js +28 -9
  92. package/dist/esm/lib/contractsIntegration/TradingFloorService/index.d.ts +3 -0
  93. package/dist/esm/lib/contractsIntegration/TradingFloorService/index.d.ts.map +1 -0
  94. package/dist/esm/lib/contractsIntegration/TradingFloorService/index.js +5 -0
  95. package/dist/esm/lib/contractsIntegration/deployedContractsConnector.d.ts +15 -0
  96. package/dist/esm/lib/contractsIntegration/deployedContractsConnector.d.ts.map +1 -1
  97. package/dist/esm/lib/contractsIntegration/deployedContractsConnector.js +45 -0
  98. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts +643 -0
  99. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts.map +1 -0
  100. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.js +2 -0
  101. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts +508 -0
  102. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts.map +1 -0
  103. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.js +2 -0
  104. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts +832 -0
  105. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts.map +1 -0
  106. package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.js +2 -0
  107. package/dist/esm/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.d.ts +1084 -0
  108. package/dist/esm/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.d.ts.map +1 -0
  109. package/dist/esm/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.js +2 -0
  110. package/dist/esm/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts +42 -6
  111. package/dist/esm/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts.map +1 -1
  112. package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts +150 -59
  113. package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts.map +1 -1
  114. package/dist/esm/lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts +10 -65
  115. package/dist/esm/lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts.map +1 -1
  116. package/dist/esm/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts +34 -112
  117. package/dist/esm/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts.map +1 -1
  118. package/dist/esm/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.d.ts +158 -0
  119. package/dist/esm/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.d.ts.map +1 -0
  120. package/dist/esm/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.js +2 -0
  121. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts +866 -0
  122. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts.map +1 -0
  123. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.js +1129 -0
  124. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts +670 -0
  125. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts.map +1 -0
  126. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.js +870 -0
  127. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts +1201 -0
  128. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts.map +1 -0
  129. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.js +1561 -0
  130. package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts +1425 -0
  131. package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts.map +1 -0
  132. package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.js +1854 -0
  133. package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts +1 -1
  134. package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.js +1 -1
  135. package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts +1 -1
  136. package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.js +1 -1
  137. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts +60 -5
  138. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts.map +1 -1
  139. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.js +78 -6
  140. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +226 -64
  141. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -1
  142. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +297 -80
  143. package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts +1 -1
  144. package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.js +1 -1
  145. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts +10 -85
  146. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts.map +1 -1
  147. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.js +10 -109
  148. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts +1 -1
  149. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.js +1 -1
  150. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +13 -442
  151. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts.map +1 -1
  152. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +51 -594
  153. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts +1 -1
  154. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.js +1 -1
  155. package/dist/esm/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.d.ts +251 -0
  156. package/dist/esm/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.d.ts.map +1 -0
  157. package/dist/esm/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.js +334 -0
  158. package/dist/types/index.d.ts +10 -0
  159. package/dist/types/index.d.ts.map +1 -1
  160. package/dist/types/lib/addresses/lensAddresses.d.ts +16 -16
  161. package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts +29 -0
  162. package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts.map +1 -0
  163. package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts +24 -0
  164. package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts.map +1 -0
  165. package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts +4 -0
  166. package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts.map +1 -0
  167. package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts +3 -16
  168. package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts.map +1 -1
  169. package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts +5 -5
  170. package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts.map +1 -1
  171. package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts +17 -0
  172. package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts.map +1 -0
  173. package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts +22 -0
  174. package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts.map +1 -0
  175. package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts +4 -0
  176. package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts.map +1 -0
  177. package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts +24 -0
  178. package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts.map +1 -0
  179. package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts +29 -0
  180. package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts.map +1 -0
  181. package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts +4 -0
  182. package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts.map +1 -0
  183. package/dist/types/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts +0 -1
  184. package/dist/types/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts.map +1 -1
  185. package/dist/types/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts +10 -21
  186. package/dist/types/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts.map +1 -1
  187. package/dist/types/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts +1 -4
  188. package/dist/types/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts.map +1 -1
  189. package/dist/types/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts +10 -4
  190. package/dist/types/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts.map +1 -1
  191. package/dist/types/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts +10 -4
  192. package/dist/types/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts.map +1 -1
  193. package/dist/types/lib/contractsIntegration/TradingFloorService/index.d.ts +3 -0
  194. package/dist/types/lib/contractsIntegration/TradingFloorService/index.d.ts.map +1 -0
  195. package/dist/types/lib/contractsIntegration/deployedContractsConnector.d.ts +15 -0
  196. package/dist/types/lib/contractsIntegration/deployedContractsConnector.d.ts.map +1 -1
  197. package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts +643 -0
  198. package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts.map +1 -0
  199. package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts +508 -0
  200. package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts.map +1 -0
  201. package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts +832 -0
  202. package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts.map +1 -0
  203. package/dist/types/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.d.ts +1084 -0
  204. package/dist/types/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.d.ts.map +1 -0
  205. package/dist/types/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts +42 -6
  206. package/dist/types/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts.map +1 -1
  207. package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts +150 -59
  208. package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts.map +1 -1
  209. package/dist/types/lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts +10 -65
  210. package/dist/types/lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts.map +1 -1
  211. package/dist/types/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts +34 -112
  212. package/dist/types/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts.map +1 -1
  213. package/dist/types/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.d.ts +158 -0
  214. package/dist/types/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.d.ts.map +1 -0
  215. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts +866 -0
  216. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts.map +1 -0
  217. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts +670 -0
  218. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts.map +1 -0
  219. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts +1201 -0
  220. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts.map +1 -0
  221. package/dist/types/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts +1425 -0
  222. package/dist/types/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts.map +1 -0
  223. package/dist/types/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts +1 -1
  224. package/dist/types/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts +1 -1
  225. package/dist/types/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts +60 -5
  226. package/dist/types/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts.map +1 -1
  227. package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +226 -64
  228. package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -1
  229. package/dist/types/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts +1 -1
  230. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts +10 -85
  231. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts.map +1 -1
  232. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts +1 -1
  233. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +13 -442
  234. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts.map +1 -1
  235. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts +1 -1
  236. package/dist/types/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.d.ts +251 -0
  237. package/dist/types/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.d.ts.map +1 -0
  238. package/package.json +1 -1
@@ -0,0 +1,643 @@
1
+ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
2
+ import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../common";
3
+ export declare namespace ChipsIntentsVerifierV1 {
4
+ type HolderRequestPayload_ChipOutLZStruct = {
5
+ timestamp: BigNumberish;
6
+ validUntil: BigNumberish;
7
+ chip: AddressLike;
8
+ holder: AddressLike;
9
+ receiver: AddressLike;
10
+ amount: BigNumberish;
11
+ };
12
+ type HolderRequestPayload_ChipOutLZStructOutput = [
13
+ timestamp: bigint,
14
+ validUntil: bigint,
15
+ chip: string,
16
+ holder: string,
17
+ receiver: string,
18
+ amount: bigint
19
+ ] & {
20
+ timestamp: bigint;
21
+ validUntil: bigint;
22
+ chip: string;
23
+ holder: string;
24
+ receiver: string;
25
+ amount: bigint;
26
+ };
27
+ type HolderRequestPayload_ChipOutLZ_UnwrapStruct = {
28
+ timestamp: BigNumberish;
29
+ validUntil: BigNumberish;
30
+ chip: AddressLike;
31
+ holder: AddressLike;
32
+ receiver: AddressLike;
33
+ amount: BigNumberish;
34
+ };
35
+ type HolderRequestPayload_ChipOutLZ_UnwrapStructOutput = [
36
+ timestamp: bigint,
37
+ validUntil: bigint,
38
+ chip: string,
39
+ holder: string,
40
+ receiver: string,
41
+ amount: bigint
42
+ ] & {
43
+ timestamp: bigint;
44
+ validUntil: bigint;
45
+ chip: string;
46
+ holder: string;
47
+ receiver: string;
48
+ amount: bigint;
49
+ };
50
+ }
51
+ export interface ChipsIntentsVerifierV1Interface extends Interface {
52
+ getFunction(nameOrSignature: "CONTRACT_DOMAIN_NAME" | "CONTRACT_DOMAIN_VERSION" | "DYN_ROLE_INTENTS_PERMISSIONS_PREFIX" | "EIP712DOMAIN_TYPEHASH" | "REQUEST_PAYLOAD_CHIP_OUT_LZ_TYPE_DESCRIPTOR" | "REQUEST_PAYLOAD_CHIP_OUT_LZ_UNWRAP_TYPE_DESCRIPTOR" | "_acceptAdmin" | "_msgSender" | "_setPendingAdmin" | "admin" | "chipOutFeeForChip" | "domainSeparatorForAsset" | "domainSeparatorForChain" | "evmIdToLzEid" | "feesReceiver" | "forceChipOut" | "getLZDstChainIdFromChip" | "getLZDstChainIdFromEvmChainId" | "getWrapNativeChipInOutHelper" | "intentsPermissions" | "interactOnBehalf_chipOut" | "pendingAdmin" | "processedSignatures" | "recoverChipOutLZPayloadSigner" | "recoverChipOutLZUnwrapPayloadSigner" | "registry" | "setChipOutFee" | "setFeesReceiver" | "setIntentsPermissions" | "setLzEndpointId" | "setWrapNativeChipInOutHelper" | "sourceChainIdForAsset" | "storeSourceChainForAsset" | "verifyIntent_chipOut" | "verifyIntent_chipOutAndUnwrap" | "wrapNativeChipInOutHelpers"): FunctionFragment;
53
+ getEvent(nameOrSignatureOrTopic: "ChipOutFeeSet" | "ChipsIntentVerified" | "DomainSeparatorForChainStored" | "FeesReceiverSet" | "ForceChipOut" | "InteractedOnBehalf" | "LzEidSet" | "NativeChipInOutHelperSet" | "NewAdmin" | "NewPendingAdmin" | "SourceChainIdForAssetStored"): EventFragment;
54
+ encodeFunctionData(functionFragment: "CONTRACT_DOMAIN_NAME", values?: undefined): string;
55
+ encodeFunctionData(functionFragment: "CONTRACT_DOMAIN_VERSION", values?: undefined): string;
56
+ encodeFunctionData(functionFragment: "DYN_ROLE_INTENTS_PERMISSIONS_PREFIX", values?: undefined): string;
57
+ encodeFunctionData(functionFragment: "EIP712DOMAIN_TYPEHASH", values?: undefined): string;
58
+ encodeFunctionData(functionFragment: "REQUEST_PAYLOAD_CHIP_OUT_LZ_TYPE_DESCRIPTOR", values?: undefined): string;
59
+ encodeFunctionData(functionFragment: "REQUEST_PAYLOAD_CHIP_OUT_LZ_UNWRAP_TYPE_DESCRIPTOR", values?: undefined): string;
60
+ encodeFunctionData(functionFragment: "_acceptAdmin", values?: undefined): string;
61
+ encodeFunctionData(functionFragment: "_msgSender", values?: undefined): string;
62
+ encodeFunctionData(functionFragment: "_setPendingAdmin", values: [AddressLike]): string;
63
+ encodeFunctionData(functionFragment: "admin", values?: undefined): string;
64
+ encodeFunctionData(functionFragment: "chipOutFeeForChip", values: [AddressLike]): string;
65
+ encodeFunctionData(functionFragment: "domainSeparatorForAsset", values: [AddressLike]): string;
66
+ encodeFunctionData(functionFragment: "domainSeparatorForChain", values: [BigNumberish]): string;
67
+ encodeFunctionData(functionFragment: "evmIdToLzEid", values: [BigNumberish]): string;
68
+ encodeFunctionData(functionFragment: "feesReceiver", values?: undefined): string;
69
+ encodeFunctionData(functionFragment: "forceChipOut", values: [AddressLike, AddressLike, BigNumberish]): string;
70
+ encodeFunctionData(functionFragment: "getLZDstChainIdFromChip", values: [AddressLike]): string;
71
+ encodeFunctionData(functionFragment: "getLZDstChainIdFromEvmChainId", values: [BigNumberish]): string;
72
+ encodeFunctionData(functionFragment: "getWrapNativeChipInOutHelper", values: [AddressLike]): string;
73
+ encodeFunctionData(functionFragment: "intentsPermissions", values: [AddressLike]): string;
74
+ encodeFunctionData(functionFragment: "interactOnBehalf_chipOut", values: [AddressLike, AddressLike, BigNumberish]): string;
75
+ encodeFunctionData(functionFragment: "pendingAdmin", values?: undefined): string;
76
+ encodeFunctionData(functionFragment: "processedSignatures", values: [BytesLike]): string;
77
+ encodeFunctionData(functionFragment: "recoverChipOutLZPayloadSigner", values: [
78
+ ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZStruct,
79
+ BigNumberish,
80
+ BytesLike,
81
+ BytesLike,
82
+ BytesLike
83
+ ]): string;
84
+ encodeFunctionData(functionFragment: "recoverChipOutLZUnwrapPayloadSigner", values: [
85
+ ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ_UnwrapStruct,
86
+ BigNumberish,
87
+ BytesLike,
88
+ BytesLike,
89
+ BytesLike
90
+ ]): string;
91
+ encodeFunctionData(functionFragment: "registry", values?: undefined): string;
92
+ encodeFunctionData(functionFragment: "setChipOutFee", values: [AddressLike, BigNumberish]): string;
93
+ encodeFunctionData(functionFragment: "setFeesReceiver", values: [AddressLike]): string;
94
+ encodeFunctionData(functionFragment: "setIntentsPermissions", values: [AddressLike, string]): string;
95
+ encodeFunctionData(functionFragment: "setLzEndpointId", values: [BigNumberish, BigNumberish]): string;
96
+ encodeFunctionData(functionFragment: "setWrapNativeChipInOutHelper", values: [AddressLike, AddressLike]): string;
97
+ encodeFunctionData(functionFragment: "sourceChainIdForAsset", values: [AddressLike]): string;
98
+ encodeFunctionData(functionFragment: "storeSourceChainForAsset", values: [AddressLike, BigNumberish]): string;
99
+ encodeFunctionData(functionFragment: "verifyIntent_chipOut", values: [
100
+ ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZStruct,
101
+ BigNumberish,
102
+ BytesLike,
103
+ BytesLike
104
+ ]): string;
105
+ encodeFunctionData(functionFragment: "verifyIntent_chipOutAndUnwrap", values: [
106
+ ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ_UnwrapStruct,
107
+ BigNumberish,
108
+ BytesLike,
109
+ BytesLike
110
+ ]): string;
111
+ encodeFunctionData(functionFragment: "wrapNativeChipInOutHelpers", values: [AddressLike]): string;
112
+ decodeFunctionResult(functionFragment: "CONTRACT_DOMAIN_NAME", data: BytesLike): Result;
113
+ decodeFunctionResult(functionFragment: "CONTRACT_DOMAIN_VERSION", data: BytesLike): Result;
114
+ decodeFunctionResult(functionFragment: "DYN_ROLE_INTENTS_PERMISSIONS_PREFIX", data: BytesLike): Result;
115
+ decodeFunctionResult(functionFragment: "EIP712DOMAIN_TYPEHASH", data: BytesLike): Result;
116
+ decodeFunctionResult(functionFragment: "REQUEST_PAYLOAD_CHIP_OUT_LZ_TYPE_DESCRIPTOR", data: BytesLike): Result;
117
+ decodeFunctionResult(functionFragment: "REQUEST_PAYLOAD_CHIP_OUT_LZ_UNWRAP_TYPE_DESCRIPTOR", data: BytesLike): Result;
118
+ decodeFunctionResult(functionFragment: "_acceptAdmin", data: BytesLike): Result;
119
+ decodeFunctionResult(functionFragment: "_msgSender", data: BytesLike): Result;
120
+ decodeFunctionResult(functionFragment: "_setPendingAdmin", data: BytesLike): Result;
121
+ decodeFunctionResult(functionFragment: "admin", data: BytesLike): Result;
122
+ decodeFunctionResult(functionFragment: "chipOutFeeForChip", data: BytesLike): Result;
123
+ decodeFunctionResult(functionFragment: "domainSeparatorForAsset", data: BytesLike): Result;
124
+ decodeFunctionResult(functionFragment: "domainSeparatorForChain", data: BytesLike): Result;
125
+ decodeFunctionResult(functionFragment: "evmIdToLzEid", data: BytesLike): Result;
126
+ decodeFunctionResult(functionFragment: "feesReceiver", data: BytesLike): Result;
127
+ decodeFunctionResult(functionFragment: "forceChipOut", data: BytesLike): Result;
128
+ decodeFunctionResult(functionFragment: "getLZDstChainIdFromChip", data: BytesLike): Result;
129
+ decodeFunctionResult(functionFragment: "getLZDstChainIdFromEvmChainId", data: BytesLike): Result;
130
+ decodeFunctionResult(functionFragment: "getWrapNativeChipInOutHelper", data: BytesLike): Result;
131
+ decodeFunctionResult(functionFragment: "intentsPermissions", data: BytesLike): Result;
132
+ decodeFunctionResult(functionFragment: "interactOnBehalf_chipOut", data: BytesLike): Result;
133
+ decodeFunctionResult(functionFragment: "pendingAdmin", data: BytesLike): Result;
134
+ decodeFunctionResult(functionFragment: "processedSignatures", data: BytesLike): Result;
135
+ decodeFunctionResult(functionFragment: "recoverChipOutLZPayloadSigner", data: BytesLike): Result;
136
+ decodeFunctionResult(functionFragment: "recoverChipOutLZUnwrapPayloadSigner", data: BytesLike): Result;
137
+ decodeFunctionResult(functionFragment: "registry", data: BytesLike): Result;
138
+ decodeFunctionResult(functionFragment: "setChipOutFee", data: BytesLike): Result;
139
+ decodeFunctionResult(functionFragment: "setFeesReceiver", data: BytesLike): Result;
140
+ decodeFunctionResult(functionFragment: "setIntentsPermissions", data: BytesLike): Result;
141
+ decodeFunctionResult(functionFragment: "setLzEndpointId", data: BytesLike): Result;
142
+ decodeFunctionResult(functionFragment: "setWrapNativeChipInOutHelper", data: BytesLike): Result;
143
+ decodeFunctionResult(functionFragment: "sourceChainIdForAsset", data: BytesLike): Result;
144
+ decodeFunctionResult(functionFragment: "storeSourceChainForAsset", data: BytesLike): Result;
145
+ decodeFunctionResult(functionFragment: "verifyIntent_chipOut", data: BytesLike): Result;
146
+ decodeFunctionResult(functionFragment: "verifyIntent_chipOutAndUnwrap", data: BytesLike): Result;
147
+ decodeFunctionResult(functionFragment: "wrapNativeChipInOutHelpers", data: BytesLike): Result;
148
+ }
149
+ export declare namespace ChipOutFeeSetEvent {
150
+ type InputTuple = [chip: AddressLike, fee: BigNumberish];
151
+ type OutputTuple = [chip: string, fee: bigint];
152
+ interface OutputObject {
153
+ chip: string;
154
+ fee: bigint;
155
+ }
156
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
157
+ type Filter = TypedDeferredTopicFilter<Event>;
158
+ type Log = TypedEventLog<Event>;
159
+ type LogDescription = TypedLogDescription<Event>;
160
+ }
161
+ export declare namespace ChipsIntentVerifiedEvent {
162
+ type InputTuple = [
163
+ sender: AddressLike,
164
+ chip: AddressLike,
165
+ holder: AddressLike,
166
+ action: BigNumberish,
167
+ amount: BigNumberish,
168
+ fee: BigNumberish
169
+ ];
170
+ type OutputTuple = [
171
+ sender: string,
172
+ chip: string,
173
+ holder: string,
174
+ action: bigint,
175
+ amount: bigint,
176
+ fee: bigint
177
+ ];
178
+ interface OutputObject {
179
+ sender: string;
180
+ chip: string;
181
+ holder: string;
182
+ action: bigint;
183
+ amount: bigint;
184
+ fee: bigint;
185
+ }
186
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
187
+ type Filter = TypedDeferredTopicFilter<Event>;
188
+ type Log = TypedEventLog<Event>;
189
+ type LogDescription = TypedLogDescription<Event>;
190
+ }
191
+ export declare namespace DomainSeparatorForChainStoredEvent {
192
+ type InputTuple = [chainId: BigNumberish, domainSeparator: BytesLike];
193
+ type OutputTuple = [chainId: bigint, domainSeparator: string];
194
+ interface OutputObject {
195
+ chainId: bigint;
196
+ domainSeparator: string;
197
+ }
198
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
199
+ type Filter = TypedDeferredTopicFilter<Event>;
200
+ type Log = TypedEventLog<Event>;
201
+ type LogDescription = TypedLogDescription<Event>;
202
+ }
203
+ export declare namespace FeesReceiverSetEvent {
204
+ type InputTuple = [receiver: AddressLike];
205
+ type OutputTuple = [receiver: string];
206
+ interface OutputObject {
207
+ receiver: string;
208
+ }
209
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
210
+ type Filter = TypedDeferredTopicFilter<Event>;
211
+ type Log = TypedEventLog<Event>;
212
+ type LogDescription = TypedLogDescription<Event>;
213
+ }
214
+ export declare namespace ForceChipOutEvent {
215
+ type InputTuple = [
216
+ chip: AddressLike,
217
+ holder: AddressLike,
218
+ action: BigNumberish,
219
+ amount: BigNumberish,
220
+ fee: BigNumberish
221
+ ];
222
+ type OutputTuple = [
223
+ chip: string,
224
+ holder: string,
225
+ action: bigint,
226
+ amount: bigint,
227
+ fee: bigint
228
+ ];
229
+ interface OutputObject {
230
+ chip: string;
231
+ holder: string;
232
+ action: bigint;
233
+ amount: bigint;
234
+ fee: bigint;
235
+ }
236
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
237
+ type Filter = TypedDeferredTopicFilter<Event>;
238
+ type Log = TypedEventLog<Event>;
239
+ type LogDescription = TypedLogDescription<Event>;
240
+ }
241
+ export declare namespace InteractedOnBehalfEvent {
242
+ type InputTuple = [
243
+ chip: AddressLike,
244
+ holder: AddressLike,
245
+ permissionedAccount: AddressLike,
246
+ action: BigNumberish,
247
+ amount: BigNumberish,
248
+ fee: BigNumberish
249
+ ];
250
+ type OutputTuple = [
251
+ chip: string,
252
+ holder: string,
253
+ permissionedAccount: string,
254
+ action: bigint,
255
+ amount: bigint,
256
+ fee: bigint
257
+ ];
258
+ interface OutputObject {
259
+ chip: string;
260
+ holder: string;
261
+ permissionedAccount: string;
262
+ action: bigint;
263
+ amount: bigint;
264
+ fee: bigint;
265
+ }
266
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
267
+ type Filter = TypedDeferredTopicFilter<Event>;
268
+ type Log = TypedEventLog<Event>;
269
+ type LogDescription = TypedLogDescription<Event>;
270
+ }
271
+ export declare namespace LzEidSetEvent {
272
+ type InputTuple = [evmId: BigNumberish, lzEid: BigNumberish];
273
+ type OutputTuple = [evmId: bigint, lzEid: bigint];
274
+ interface OutputObject {
275
+ evmId: bigint;
276
+ lzEid: bigint;
277
+ }
278
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
279
+ type Filter = TypedDeferredTopicFilter<Event>;
280
+ type Log = TypedEventLog<Event>;
281
+ type LogDescription = TypedLogDescription<Event>;
282
+ }
283
+ export declare namespace NativeChipInOutHelperSetEvent {
284
+ type InputTuple = [oftChip: AddressLike, helper: AddressLike];
285
+ type OutputTuple = [oftChip: string, helper: string];
286
+ interface OutputObject {
287
+ oftChip: string;
288
+ helper: string;
289
+ }
290
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
291
+ type Filter = TypedDeferredTopicFilter<Event>;
292
+ type Log = TypedEventLog<Event>;
293
+ type LogDescription = TypedLogDescription<Event>;
294
+ }
295
+ export declare namespace NewAdminEvent {
296
+ type InputTuple = [oldAdmin: AddressLike, newAdmin: AddressLike];
297
+ type OutputTuple = [oldAdmin: string, newAdmin: string];
298
+ interface OutputObject {
299
+ oldAdmin: string;
300
+ newAdmin: string;
301
+ }
302
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
303
+ type Filter = TypedDeferredTopicFilter<Event>;
304
+ type Log = TypedEventLog<Event>;
305
+ type LogDescription = TypedLogDescription<Event>;
306
+ }
307
+ export declare namespace NewPendingAdminEvent {
308
+ type InputTuple = [
309
+ oldPendingAdmin: AddressLike,
310
+ newPendingAdmin: AddressLike
311
+ ];
312
+ type OutputTuple = [oldPendingAdmin: string, newPendingAdmin: string];
313
+ interface OutputObject {
314
+ oldPendingAdmin: string;
315
+ newPendingAdmin: string;
316
+ }
317
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
318
+ type Filter = TypedDeferredTopicFilter<Event>;
319
+ type Log = TypedEventLog<Event>;
320
+ type LogDescription = TypedLogDescription<Event>;
321
+ }
322
+ export declare namespace SourceChainIdForAssetStoredEvent {
323
+ type InputTuple = [asset: AddressLike, chainId: BigNumberish];
324
+ type OutputTuple = [asset: string, chainId: bigint];
325
+ interface OutputObject {
326
+ asset: string;
327
+ chainId: bigint;
328
+ }
329
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
330
+ type Filter = TypedDeferredTopicFilter<Event>;
331
+ type Log = TypedEventLog<Event>;
332
+ type LogDescription = TypedLogDescription<Event>;
333
+ }
334
+ export interface ChipsIntentsVerifierV1 extends BaseContract {
335
+ connect(runner?: ContractRunner | null): ChipsIntentsVerifierV1;
336
+ waitForDeployment(): Promise<this>;
337
+ interface: ChipsIntentsVerifierV1Interface;
338
+ queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
339
+ queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
340
+ on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
341
+ on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
342
+ once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
343
+ once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
344
+ listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
345
+ listeners(eventName?: string): Promise<Array<Listener>>;
346
+ removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
347
+ CONTRACT_DOMAIN_NAME: TypedContractMethod<[], [string], "view">;
348
+ CONTRACT_DOMAIN_VERSION: TypedContractMethod<[], [string], "view">;
349
+ DYN_ROLE_INTENTS_PERMISSIONS_PREFIX: TypedContractMethod<[
350
+ ], [
351
+ string
352
+ ], "view">;
353
+ EIP712DOMAIN_TYPEHASH: TypedContractMethod<[], [string], "view">;
354
+ REQUEST_PAYLOAD_CHIP_OUT_LZ_TYPE_DESCRIPTOR: TypedContractMethod<[
355
+ ], [
356
+ string
357
+ ], "view">;
358
+ REQUEST_PAYLOAD_CHIP_OUT_LZ_UNWRAP_TYPE_DESCRIPTOR: TypedContractMethod<[
359
+ ], [
360
+ string
361
+ ], "view">;
362
+ _acceptAdmin: TypedContractMethod<[], [void], "nonpayable">;
363
+ _msgSender: TypedContractMethod<[], [string], "view">;
364
+ _setPendingAdmin: TypedContractMethod<[
365
+ newPendingAdmin: AddressLike
366
+ ], [
367
+ void
368
+ ], "nonpayable">;
369
+ admin: TypedContractMethod<[], [string], "view">;
370
+ chipOutFeeForChip: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
371
+ domainSeparatorForAsset: TypedContractMethod<[
372
+ asset: AddressLike
373
+ ], [
374
+ string
375
+ ], "view">;
376
+ domainSeparatorForChain: TypedContractMethod<[
377
+ arg0: BigNumberish
378
+ ], [
379
+ string
380
+ ], "view">;
381
+ evmIdToLzEid: TypedContractMethod<[arg0: BigNumberish], [bigint], "view">;
382
+ feesReceiver: TypedContractMethod<[], [string], "view">;
383
+ forceChipOut: TypedContractMethod<[
384
+ chip: AddressLike,
385
+ holder: AddressLike,
386
+ amount: BigNumberish
387
+ ], [
388
+ void
389
+ ], "payable">;
390
+ getLZDstChainIdFromChip: TypedContractMethod<[
391
+ chip: AddressLike
392
+ ], [
393
+ bigint
394
+ ], "view">;
395
+ getLZDstChainIdFromEvmChainId: TypedContractMethod<[
396
+ evmChainId: BigNumberish
397
+ ], [
398
+ bigint
399
+ ], "view">;
400
+ getWrapNativeChipInOutHelper: TypedContractMethod<[
401
+ oftChip: AddressLike
402
+ ], [
403
+ string
404
+ ], "view">;
405
+ intentsPermissions: TypedContractMethod<[
406
+ arg0: AddressLike
407
+ ], [
408
+ string
409
+ ], "view">;
410
+ interactOnBehalf_chipOut: TypedContractMethod<[
411
+ chip: AddressLike,
412
+ holder: AddressLike,
413
+ amount: BigNumberish
414
+ ], [
415
+ void
416
+ ], "payable">;
417
+ pendingAdmin: TypedContractMethod<[], [string], "view">;
418
+ processedSignatures: TypedContractMethod<[
419
+ arg0: BytesLike
420
+ ], [
421
+ boolean
422
+ ], "view">;
423
+ recoverChipOutLZPayloadSigner: TypedContractMethod<[
424
+ payload: ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZStruct,
425
+ v: BigNumberish,
426
+ r: BytesLike,
427
+ s: BytesLike,
428
+ domainSeparator: BytesLike
429
+ ], [
430
+ string
431
+ ], "view">;
432
+ recoverChipOutLZUnwrapPayloadSigner: TypedContractMethod<[
433
+ payload: ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ_UnwrapStruct,
434
+ v: BigNumberish,
435
+ r: BytesLike,
436
+ s: BytesLike,
437
+ domainSeparator: BytesLike
438
+ ], [
439
+ string
440
+ ], "view">;
441
+ registry: TypedContractMethod<[], [string], "view">;
442
+ setChipOutFee: TypedContractMethod<[
443
+ chip: AddressLike,
444
+ fee: BigNumberish
445
+ ], [
446
+ void
447
+ ], "nonpayable">;
448
+ setFeesReceiver: TypedContractMethod<[
449
+ receiver: AddressLike
450
+ ], [
451
+ void
452
+ ], "nonpayable">;
453
+ setIntentsPermissions: TypedContractMethod<[
454
+ oftChip: AddressLike,
455
+ dynAddressSuffix: string
456
+ ], [
457
+ void
458
+ ], "nonpayable">;
459
+ setLzEndpointId: TypedContractMethod<[
460
+ evmId: BigNumberish,
461
+ lzEid: BigNumberish
462
+ ], [
463
+ void
464
+ ], "nonpayable">;
465
+ setWrapNativeChipInOutHelper: TypedContractMethod<[
466
+ oftChip: AddressLike,
467
+ _wrapNativeChipInOutHelper: AddressLike
468
+ ], [
469
+ void
470
+ ], "nonpayable">;
471
+ sourceChainIdForAsset: TypedContractMethod<[
472
+ arg0: AddressLike
473
+ ], [
474
+ bigint
475
+ ], "view">;
476
+ storeSourceChainForAsset: TypedContractMethod<[
477
+ asset: AddressLike,
478
+ chainId: BigNumberish
479
+ ], [
480
+ void
481
+ ], "nonpayable">;
482
+ verifyIntent_chipOut: TypedContractMethod<[
483
+ payload: ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZStruct,
484
+ v: BigNumberish,
485
+ r: BytesLike,
486
+ s: BytesLike
487
+ ], [
488
+ void
489
+ ], "payable">;
490
+ verifyIntent_chipOutAndUnwrap: TypedContractMethod<[
491
+ payload: ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ_UnwrapStruct,
492
+ v: BigNumberish,
493
+ r: BytesLike,
494
+ s: BytesLike
495
+ ], [
496
+ void
497
+ ], "payable">;
498
+ wrapNativeChipInOutHelpers: TypedContractMethod<[
499
+ arg0: AddressLike
500
+ ], [
501
+ string
502
+ ], "view">;
503
+ getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
504
+ getFunction(nameOrSignature: "CONTRACT_DOMAIN_NAME"): TypedContractMethod<[], [string], "view">;
505
+ getFunction(nameOrSignature: "CONTRACT_DOMAIN_VERSION"): TypedContractMethod<[], [string], "view">;
506
+ getFunction(nameOrSignature: "DYN_ROLE_INTENTS_PERMISSIONS_PREFIX"): TypedContractMethod<[], [string], "view">;
507
+ getFunction(nameOrSignature: "EIP712DOMAIN_TYPEHASH"): TypedContractMethod<[], [string], "view">;
508
+ getFunction(nameOrSignature: "REQUEST_PAYLOAD_CHIP_OUT_LZ_TYPE_DESCRIPTOR"): TypedContractMethod<[], [string], "view">;
509
+ getFunction(nameOrSignature: "REQUEST_PAYLOAD_CHIP_OUT_LZ_UNWRAP_TYPE_DESCRIPTOR"): TypedContractMethod<[], [string], "view">;
510
+ getFunction(nameOrSignature: "_acceptAdmin"): TypedContractMethod<[], [void], "nonpayable">;
511
+ getFunction(nameOrSignature: "_msgSender"): TypedContractMethod<[], [string], "view">;
512
+ getFunction(nameOrSignature: "_setPendingAdmin"): TypedContractMethod<[newPendingAdmin: AddressLike], [void], "nonpayable">;
513
+ getFunction(nameOrSignature: "admin"): TypedContractMethod<[], [string], "view">;
514
+ getFunction(nameOrSignature: "chipOutFeeForChip"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
515
+ getFunction(nameOrSignature: "domainSeparatorForAsset"): TypedContractMethod<[asset: AddressLike], [string], "view">;
516
+ getFunction(nameOrSignature: "domainSeparatorForChain"): TypedContractMethod<[arg0: BigNumberish], [string], "view">;
517
+ getFunction(nameOrSignature: "evmIdToLzEid"): TypedContractMethod<[arg0: BigNumberish], [bigint], "view">;
518
+ getFunction(nameOrSignature: "feesReceiver"): TypedContractMethod<[], [string], "view">;
519
+ getFunction(nameOrSignature: "forceChipOut"): TypedContractMethod<[
520
+ chip: AddressLike,
521
+ holder: AddressLike,
522
+ amount: BigNumberish
523
+ ], [
524
+ void
525
+ ], "payable">;
526
+ getFunction(nameOrSignature: "getLZDstChainIdFromChip"): TypedContractMethod<[chip: AddressLike], [bigint], "view">;
527
+ getFunction(nameOrSignature: "getLZDstChainIdFromEvmChainId"): TypedContractMethod<[evmChainId: BigNumberish], [bigint], "view">;
528
+ getFunction(nameOrSignature: "getWrapNativeChipInOutHelper"): TypedContractMethod<[oftChip: AddressLike], [string], "view">;
529
+ getFunction(nameOrSignature: "intentsPermissions"): TypedContractMethod<[arg0: AddressLike], [string], "view">;
530
+ getFunction(nameOrSignature: "interactOnBehalf_chipOut"): TypedContractMethod<[
531
+ chip: AddressLike,
532
+ holder: AddressLike,
533
+ amount: BigNumberish
534
+ ], [
535
+ void
536
+ ], "payable">;
537
+ getFunction(nameOrSignature: "pendingAdmin"): TypedContractMethod<[], [string], "view">;
538
+ getFunction(nameOrSignature: "processedSignatures"): TypedContractMethod<[arg0: BytesLike], [boolean], "view">;
539
+ getFunction(nameOrSignature: "recoverChipOutLZPayloadSigner"): TypedContractMethod<[
540
+ payload: ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZStruct,
541
+ v: BigNumberish,
542
+ r: BytesLike,
543
+ s: BytesLike,
544
+ domainSeparator: BytesLike
545
+ ], [
546
+ string
547
+ ], "view">;
548
+ getFunction(nameOrSignature: "recoverChipOutLZUnwrapPayloadSigner"): TypedContractMethod<[
549
+ payload: ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ_UnwrapStruct,
550
+ v: BigNumberish,
551
+ r: BytesLike,
552
+ s: BytesLike,
553
+ domainSeparator: BytesLike
554
+ ], [
555
+ string
556
+ ], "view">;
557
+ getFunction(nameOrSignature: "registry"): TypedContractMethod<[], [string], "view">;
558
+ getFunction(nameOrSignature: "setChipOutFee"): TypedContractMethod<[
559
+ chip: AddressLike,
560
+ fee: BigNumberish
561
+ ], [
562
+ void
563
+ ], "nonpayable">;
564
+ getFunction(nameOrSignature: "setFeesReceiver"): TypedContractMethod<[receiver: AddressLike], [void], "nonpayable">;
565
+ getFunction(nameOrSignature: "setIntentsPermissions"): TypedContractMethod<[
566
+ oftChip: AddressLike,
567
+ dynAddressSuffix: string
568
+ ], [
569
+ void
570
+ ], "nonpayable">;
571
+ getFunction(nameOrSignature: "setLzEndpointId"): TypedContractMethod<[
572
+ evmId: BigNumberish,
573
+ lzEid: BigNumberish
574
+ ], [
575
+ void
576
+ ], "nonpayable">;
577
+ getFunction(nameOrSignature: "setWrapNativeChipInOutHelper"): TypedContractMethod<[
578
+ oftChip: AddressLike,
579
+ _wrapNativeChipInOutHelper: AddressLike
580
+ ], [
581
+ void
582
+ ], "nonpayable">;
583
+ getFunction(nameOrSignature: "sourceChainIdForAsset"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
584
+ getFunction(nameOrSignature: "storeSourceChainForAsset"): TypedContractMethod<[
585
+ asset: AddressLike,
586
+ chainId: BigNumberish
587
+ ], [
588
+ void
589
+ ], "nonpayable">;
590
+ getFunction(nameOrSignature: "verifyIntent_chipOut"): TypedContractMethod<[
591
+ payload: ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZStruct,
592
+ v: BigNumberish,
593
+ r: BytesLike,
594
+ s: BytesLike
595
+ ], [
596
+ void
597
+ ], "payable">;
598
+ getFunction(nameOrSignature: "verifyIntent_chipOutAndUnwrap"): TypedContractMethod<[
599
+ payload: ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ_UnwrapStruct,
600
+ v: BigNumberish,
601
+ r: BytesLike,
602
+ s: BytesLike
603
+ ], [
604
+ void
605
+ ], "payable">;
606
+ getFunction(nameOrSignature: "wrapNativeChipInOutHelpers"): TypedContractMethod<[arg0: AddressLike], [string], "view">;
607
+ getEvent(key: "ChipOutFeeSet"): TypedContractEvent<ChipOutFeeSetEvent.InputTuple, ChipOutFeeSetEvent.OutputTuple, ChipOutFeeSetEvent.OutputObject>;
608
+ getEvent(key: "ChipsIntentVerified"): TypedContractEvent<ChipsIntentVerifiedEvent.InputTuple, ChipsIntentVerifiedEvent.OutputTuple, ChipsIntentVerifiedEvent.OutputObject>;
609
+ getEvent(key: "DomainSeparatorForChainStored"): TypedContractEvent<DomainSeparatorForChainStoredEvent.InputTuple, DomainSeparatorForChainStoredEvent.OutputTuple, DomainSeparatorForChainStoredEvent.OutputObject>;
610
+ getEvent(key: "FeesReceiverSet"): TypedContractEvent<FeesReceiverSetEvent.InputTuple, FeesReceiverSetEvent.OutputTuple, FeesReceiverSetEvent.OutputObject>;
611
+ getEvent(key: "ForceChipOut"): TypedContractEvent<ForceChipOutEvent.InputTuple, ForceChipOutEvent.OutputTuple, ForceChipOutEvent.OutputObject>;
612
+ getEvent(key: "InteractedOnBehalf"): TypedContractEvent<InteractedOnBehalfEvent.InputTuple, InteractedOnBehalfEvent.OutputTuple, InteractedOnBehalfEvent.OutputObject>;
613
+ getEvent(key: "LzEidSet"): TypedContractEvent<LzEidSetEvent.InputTuple, LzEidSetEvent.OutputTuple, LzEidSetEvent.OutputObject>;
614
+ getEvent(key: "NativeChipInOutHelperSet"): TypedContractEvent<NativeChipInOutHelperSetEvent.InputTuple, NativeChipInOutHelperSetEvent.OutputTuple, NativeChipInOutHelperSetEvent.OutputObject>;
615
+ getEvent(key: "NewAdmin"): TypedContractEvent<NewAdminEvent.InputTuple, NewAdminEvent.OutputTuple, NewAdminEvent.OutputObject>;
616
+ getEvent(key: "NewPendingAdmin"): TypedContractEvent<NewPendingAdminEvent.InputTuple, NewPendingAdminEvent.OutputTuple, NewPendingAdminEvent.OutputObject>;
617
+ getEvent(key: "SourceChainIdForAssetStored"): TypedContractEvent<SourceChainIdForAssetStoredEvent.InputTuple, SourceChainIdForAssetStoredEvent.OutputTuple, SourceChainIdForAssetStoredEvent.OutputObject>;
618
+ filters: {
619
+ "ChipOutFeeSet(address,uint256)": TypedContractEvent<ChipOutFeeSetEvent.InputTuple, ChipOutFeeSetEvent.OutputTuple, ChipOutFeeSetEvent.OutputObject>;
620
+ ChipOutFeeSet: TypedContractEvent<ChipOutFeeSetEvent.InputTuple, ChipOutFeeSetEvent.OutputTuple, ChipOutFeeSetEvent.OutputObject>;
621
+ "ChipsIntentVerified(address,address,address,uint8,uint256,uint256)": TypedContractEvent<ChipsIntentVerifiedEvent.InputTuple, ChipsIntentVerifiedEvent.OutputTuple, ChipsIntentVerifiedEvent.OutputObject>;
622
+ ChipsIntentVerified: TypedContractEvent<ChipsIntentVerifiedEvent.InputTuple, ChipsIntentVerifiedEvent.OutputTuple, ChipsIntentVerifiedEvent.OutputObject>;
623
+ "DomainSeparatorForChainStored(uint256,bytes32)": TypedContractEvent<DomainSeparatorForChainStoredEvent.InputTuple, DomainSeparatorForChainStoredEvent.OutputTuple, DomainSeparatorForChainStoredEvent.OutputObject>;
624
+ DomainSeparatorForChainStored: TypedContractEvent<DomainSeparatorForChainStoredEvent.InputTuple, DomainSeparatorForChainStoredEvent.OutputTuple, DomainSeparatorForChainStoredEvent.OutputObject>;
625
+ "FeesReceiverSet(address)": TypedContractEvent<FeesReceiverSetEvent.InputTuple, FeesReceiverSetEvent.OutputTuple, FeesReceiverSetEvent.OutputObject>;
626
+ FeesReceiverSet: TypedContractEvent<FeesReceiverSetEvent.InputTuple, FeesReceiverSetEvent.OutputTuple, FeesReceiverSetEvent.OutputObject>;
627
+ "ForceChipOut(address,address,uint8,uint256,uint256)": TypedContractEvent<ForceChipOutEvent.InputTuple, ForceChipOutEvent.OutputTuple, ForceChipOutEvent.OutputObject>;
628
+ ForceChipOut: TypedContractEvent<ForceChipOutEvent.InputTuple, ForceChipOutEvent.OutputTuple, ForceChipOutEvent.OutputObject>;
629
+ "InteractedOnBehalf(address,address,address,uint8,uint256,uint256)": TypedContractEvent<InteractedOnBehalfEvent.InputTuple, InteractedOnBehalfEvent.OutputTuple, InteractedOnBehalfEvent.OutputObject>;
630
+ InteractedOnBehalf: TypedContractEvent<InteractedOnBehalfEvent.InputTuple, InteractedOnBehalfEvent.OutputTuple, InteractedOnBehalfEvent.OutputObject>;
631
+ "LzEidSet(uint16,uint16)": TypedContractEvent<LzEidSetEvent.InputTuple, LzEidSetEvent.OutputTuple, LzEidSetEvent.OutputObject>;
632
+ LzEidSet: TypedContractEvent<LzEidSetEvent.InputTuple, LzEidSetEvent.OutputTuple, LzEidSetEvent.OutputObject>;
633
+ "NativeChipInOutHelperSet(address,address)": TypedContractEvent<NativeChipInOutHelperSetEvent.InputTuple, NativeChipInOutHelperSetEvent.OutputTuple, NativeChipInOutHelperSetEvent.OutputObject>;
634
+ NativeChipInOutHelperSet: TypedContractEvent<NativeChipInOutHelperSetEvent.InputTuple, NativeChipInOutHelperSetEvent.OutputTuple, NativeChipInOutHelperSetEvent.OutputObject>;
635
+ "NewAdmin(address,address)": TypedContractEvent<NewAdminEvent.InputTuple, NewAdminEvent.OutputTuple, NewAdminEvent.OutputObject>;
636
+ NewAdmin: TypedContractEvent<NewAdminEvent.InputTuple, NewAdminEvent.OutputTuple, NewAdminEvent.OutputObject>;
637
+ "NewPendingAdmin(address,address)": TypedContractEvent<NewPendingAdminEvent.InputTuple, NewPendingAdminEvent.OutputTuple, NewPendingAdminEvent.OutputObject>;
638
+ NewPendingAdmin: TypedContractEvent<NewPendingAdminEvent.InputTuple, NewPendingAdminEvent.OutputTuple, NewPendingAdminEvent.OutputObject>;
639
+ "SourceChainIdForAssetStored(address,uint256)": TypedContractEvent<SourceChainIdForAssetStoredEvent.InputTuple, SourceChainIdForAssetStoredEvent.OutputTuple, SourceChainIdForAssetStoredEvent.OutputObject>;
640
+ SourceChainIdForAssetStored: TypedContractEvent<SourceChainIdForAssetStoredEvent.InputTuple, SourceChainIdForAssetStoredEvent.OutputTuple, SourceChainIdForAssetStoredEvent.OutputObject>;
641
+ };
642
+ }
643
+ //# sourceMappingURL=ChipsIntentsVerifierV1.d.ts.map