lynx-client 0.0.38 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. package/dist/cjs/index.js +8 -3
  2. package/dist/cjs/lib/addresses/lensAddresses.js +10 -8
  3. package/dist/cjs/lib/constants/pairIds.js +6 -0
  4. package/dist/cjs/lib/contractsIntegration/LexLensService/ILexLensService.js +7 -1
  5. package/dist/cjs/lib/contractsIntegration/LexLensService/LexLensService.js +6 -0
  6. package/dist/cjs/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.js +6 -1
  7. package/dist/cjs/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.js +4 -0
  8. package/dist/cjs/lib/contractsIntegration/TradingFloorService/TradingFloorService.js +12 -0
  9. package/dist/cjs/lib/devex/getChainAddresses.js +1 -1
  10. package/dist/cjs/lib/priceFeeds/flare/flareFeedConstants.js +3 -0
  11. package/dist/cjs/lib/priceFeeds/pyth/{pythFeedConstants.js → hermes/hermesFeedConstants.js} +11 -5
  12. package/dist/cjs/lib/priceFeeds/pyth/hermes/hermesFeedFunctions.js +24 -0
  13. package/dist/{esm/lib/priceFeeds/pyth/pythPriceData.js → cjs/lib/priceFeeds/pyth/hermes/hermesPriceData.js} +11 -9
  14. package/dist/cjs/lib/priceFeeds/pyth/lazer/lazerFeedConstants.js +166 -0
  15. package/dist/cjs/lib/priceFeeds/pyth/lazer/lazerFeedFunctions.js +25 -0
  16. package/dist/cjs/lib/priceFeeds/pyth/lazer/lazerPayloadTypes.js +2 -0
  17. package/dist/cjs/lib/priceFeeds/pyth/lazer/lazerPriceData.js +60 -0
  18. package/dist/cjs/lib/priceFeeds/pyth/lazer/lazerSigningFormats.js +27 -0
  19. package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.js +1 -1
  20. package/dist/cjs/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.js +1 -1
  21. package/dist/cjs/lib/typechain/factories/contracts/Lynx/Lex/PoolAccountant/PoolAccountantV1__factory.js +1 -1
  22. package/dist/cjs/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.js +1 -1
  23. package/dist/cjs/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.js +1 -1
  24. package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.js +1 -1
  25. package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +82 -1
  26. package/dist/cjs/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.js +1 -1
  27. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.js +81 -1
  28. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +42 -1
  29. package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.js +1 -1
  30. package/dist/esm/index.d.ts +8 -3
  31. package/dist/esm/index.d.ts.map +1 -1
  32. package/dist/esm/index.js +8 -3
  33. package/dist/esm/lib/addresses/lensAddresses.d.ts +10 -8
  34. package/dist/esm/lib/addresses/lensAddresses.d.ts.map +1 -1
  35. package/dist/esm/lib/addresses/lensAddresses.js +10 -8
  36. package/dist/esm/lib/constants/pairIds.d.ts +4 -1
  37. package/dist/esm/lib/constants/pairIds.d.ts.map +1 -1
  38. package/dist/esm/lib/constants/pairIds.js +6 -0
  39. package/dist/esm/lib/contractsIntegration/LexLensService/ILexLensService.d.ts +4 -1
  40. package/dist/esm/lib/contractsIntegration/LexLensService/ILexLensService.d.ts.map +1 -1
  41. package/dist/esm/lib/contractsIntegration/LexLensService/ILexLensService.js +7 -1
  42. package/dist/esm/lib/contractsIntegration/LexLensService/LexLensService.d.ts +2 -1
  43. package/dist/esm/lib/contractsIntegration/LexLensService/LexLensService.d.ts.map +1 -1
  44. package/dist/esm/lib/contractsIntegration/LexLensService/LexLensService.js +6 -0
  45. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts +4 -1
  46. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts.map +1 -1
  47. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.js +6 -1
  48. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts +2 -1
  49. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts.map +1 -1
  50. package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.js +4 -0
  51. package/dist/esm/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts +6 -1
  52. package/dist/esm/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts.map +1 -1
  53. package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts +2 -1
  54. package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts.map +1 -1
  55. package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.js +12 -0
  56. package/dist/esm/lib/devex/getChainAddresses.js +1 -1
  57. package/dist/esm/lib/priceFeeds/flare/flareFeedConstants.d.ts.map +1 -1
  58. package/dist/esm/lib/priceFeeds/flare/flareFeedConstants.js +3 -0
  59. package/dist/esm/lib/priceFeeds/pyth/hermes/hermesFeedConstants.d.ts +5 -0
  60. package/dist/esm/lib/priceFeeds/pyth/hermes/hermesFeedConstants.d.ts.map +1 -0
  61. package/dist/esm/lib/priceFeeds/pyth/{pythFeedConstants.js → hermes/hermesFeedConstants.js} +11 -5
  62. package/dist/esm/lib/priceFeeds/pyth/hermes/hermesFeedFunctions.d.ts +14 -0
  63. package/dist/esm/lib/priceFeeds/pyth/hermes/hermesFeedFunctions.d.ts.map +1 -0
  64. package/dist/esm/lib/priceFeeds/pyth/hermes/hermesFeedFunctions.js +24 -0
  65. package/dist/esm/lib/priceFeeds/pyth/hermes/hermesPriceData.d.ts +11 -0
  66. package/dist/esm/lib/priceFeeds/pyth/hermes/hermesPriceData.d.ts.map +1 -0
  67. package/dist/{cjs/lib/priceFeeds/pyth/pythPriceData.js → esm/lib/priceFeeds/pyth/hermes/hermesPriceData.js} +11 -9
  68. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerFeedConstants.d.ts +54 -0
  69. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerFeedConstants.d.ts.map +1 -0
  70. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerFeedConstants.js +166 -0
  71. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerFeedFunctions.d.ts +16 -0
  72. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerFeedFunctions.d.ts.map +1 -0
  73. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerFeedFunctions.js +25 -0
  74. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerPayloadTypes.d.ts +64 -0
  75. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerPayloadTypes.d.ts.map +1 -0
  76. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerPayloadTypes.js +2 -0
  77. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerPriceData.d.ts +26 -0
  78. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerPriceData.d.ts.map +1 -0
  79. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerPriceData.js +60 -0
  80. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerSigningFormats.d.ts +36 -0
  81. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerSigningFormats.d.ts.map +1 -0
  82. package/dist/esm/lib/priceFeeds/pyth/lazer/lazerSigningFormats.js +27 -0
  83. package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts +63 -2
  84. package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts.map +1 -1
  85. package/dist/esm/lib/typechain/contracts/Peripheral/Lens/LexLens.d.ts +30 -1
  86. package/dist/esm/lib/typechain/contracts/Peripheral/Lens/LexLens.d.ts.map +1 -1
  87. package/dist/esm/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts +29 -1
  88. package/dist/esm/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts.map +1 -1
  89. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts +1 -1
  90. package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.js +1 -1
  91. package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts +1 -1
  92. package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.js +1 -1
  93. package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/PoolAccountant/PoolAccountantV1__factory.d.ts +1 -1
  94. package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/PoolAccountant/PoolAccountantV1__factory.js +1 -1
  95. package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts +1 -1
  96. package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.js +1 -1
  97. package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts +1 -1
  98. package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.js +1 -1
  99. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts +1 -1
  100. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.js +1 -1
  101. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +64 -1
  102. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -1
  103. package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +82 -1
  104. package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts +1 -1
  105. package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts.map +1 -1
  106. package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.js +1 -1
  107. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts +62 -1
  108. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts.map +1 -1
  109. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.js +81 -1
  110. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +32 -1
  111. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts.map +1 -1
  112. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +42 -1
  113. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts +1 -1
  114. package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.js +1 -1
  115. package/dist/types/index.d.ts +8 -3
  116. package/dist/types/index.d.ts.map +1 -1
  117. package/dist/types/lib/addresses/lensAddresses.d.ts +10 -8
  118. package/dist/types/lib/addresses/lensAddresses.d.ts.map +1 -1
  119. package/dist/types/lib/constants/pairIds.d.ts +4 -1
  120. package/dist/types/lib/constants/pairIds.d.ts.map +1 -1
  121. package/dist/types/lib/contractsIntegration/LexLensService/ILexLensService.d.ts +4 -1
  122. package/dist/types/lib/contractsIntegration/LexLensService/ILexLensService.d.ts.map +1 -1
  123. package/dist/types/lib/contractsIntegration/LexLensService/LexLensService.d.ts +2 -1
  124. package/dist/types/lib/contractsIntegration/LexLensService/LexLensService.d.ts.map +1 -1
  125. package/dist/types/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts +4 -1
  126. package/dist/types/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts.map +1 -1
  127. package/dist/types/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts +2 -1
  128. package/dist/types/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts.map +1 -1
  129. package/dist/types/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts +6 -1
  130. package/dist/types/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts.map +1 -1
  131. package/dist/types/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts +2 -1
  132. package/dist/types/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts.map +1 -1
  133. package/dist/types/lib/priceFeeds/flare/flareFeedConstants.d.ts.map +1 -1
  134. package/dist/types/lib/priceFeeds/pyth/hermes/hermesFeedConstants.d.ts +5 -0
  135. package/dist/types/lib/priceFeeds/pyth/hermes/hermesFeedConstants.d.ts.map +1 -0
  136. package/dist/types/lib/priceFeeds/pyth/hermes/hermesFeedFunctions.d.ts +14 -0
  137. package/dist/types/lib/priceFeeds/pyth/hermes/hermesFeedFunctions.d.ts.map +1 -0
  138. package/dist/types/lib/priceFeeds/pyth/hermes/hermesPriceData.d.ts +11 -0
  139. package/dist/types/lib/priceFeeds/pyth/hermes/hermesPriceData.d.ts.map +1 -0
  140. package/dist/types/lib/priceFeeds/pyth/lazer/lazerFeedConstants.d.ts +54 -0
  141. package/dist/types/lib/priceFeeds/pyth/lazer/lazerFeedConstants.d.ts.map +1 -0
  142. package/dist/types/lib/priceFeeds/pyth/lazer/lazerFeedFunctions.d.ts +16 -0
  143. package/dist/types/lib/priceFeeds/pyth/lazer/lazerFeedFunctions.d.ts.map +1 -0
  144. package/dist/types/lib/priceFeeds/pyth/lazer/lazerPayloadTypes.d.ts +64 -0
  145. package/dist/types/lib/priceFeeds/pyth/lazer/lazerPayloadTypes.d.ts.map +1 -0
  146. package/dist/types/lib/priceFeeds/pyth/lazer/lazerPriceData.d.ts +26 -0
  147. package/dist/types/lib/priceFeeds/pyth/lazer/lazerPriceData.d.ts.map +1 -0
  148. package/dist/types/lib/priceFeeds/pyth/lazer/lazerSigningFormats.d.ts +36 -0
  149. package/dist/types/lib/priceFeeds/pyth/lazer/lazerSigningFormats.d.ts.map +1 -0
  150. package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts +63 -2
  151. package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts.map +1 -1
  152. package/dist/types/lib/typechain/contracts/Peripheral/Lens/LexLens.d.ts +30 -1
  153. package/dist/types/lib/typechain/contracts/Peripheral/Lens/LexLens.d.ts.map +1 -1
  154. package/dist/types/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts +29 -1
  155. package/dist/types/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts.map +1 -1
  156. package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts +1 -1
  157. package/dist/types/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts +1 -1
  158. package/dist/types/lib/typechain/factories/contracts/Lynx/Lex/PoolAccountant/PoolAccountantV1__factory.d.ts +1 -1
  159. package/dist/types/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts +1 -1
  160. package/dist/types/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts +1 -1
  161. package/dist/types/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts +1 -1
  162. package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +64 -1
  163. package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -1
  164. package/dist/types/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts +1 -1
  165. package/dist/types/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts.map +1 -1
  166. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts +62 -1
  167. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts.map +1 -1
  168. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +32 -1
  169. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts.map +1 -1
  170. package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts +1 -1
  171. package/package.json +13 -13
  172. package/dist/cjs/lib/priceFeeds/pyth/pythFeedFunctions.js +0 -27
  173. package/dist/esm/lib/priceFeeds/pyth/pythFeedConstants.d.ts +0 -5
  174. package/dist/esm/lib/priceFeeds/pyth/pythFeedConstants.d.ts.map +0 -1
  175. package/dist/esm/lib/priceFeeds/pyth/pythFeedFunctions.d.ts +0 -17
  176. package/dist/esm/lib/priceFeeds/pyth/pythFeedFunctions.d.ts.map +0 -1
  177. package/dist/esm/lib/priceFeeds/pyth/pythFeedFunctions.js +0 -27
  178. package/dist/esm/lib/priceFeeds/pyth/pythPriceData.d.ts +0 -10
  179. package/dist/esm/lib/priceFeeds/pyth/pythPriceData.d.ts.map +0 -1
  180. package/dist/types/lib/priceFeeds/pyth/pythFeedConstants.d.ts +0 -5
  181. package/dist/types/lib/priceFeeds/pyth/pythFeedConstants.d.ts.map +0 -1
  182. package/dist/types/lib/priceFeeds/pyth/pythFeedFunctions.d.ts +0 -17
  183. package/dist/types/lib/priceFeeds/pyth/pythFeedFunctions.d.ts.map +0 -1
  184. package/dist/types/lib/priceFeeds/pyth/pythPriceData.d.ts +0 -10
  185. package/dist/types/lib/priceFeeds/pyth/pythPriceData.d.ts.map +0 -1
@@ -1,4 +1,4 @@
1
- import { BytesLike } from "ethers";
1
+ import { BytesLike, ContractTransactionResponse } from "ethers";
2
2
  import { TradingFloorStructsV1 } from "../../typechain/contracts/Lynx/TradingFloor/TradingFloorV1";
3
3
  import { TSafeBigNumberStruct } from "../../utils/ethersTypes";
4
4
  import { ILynxVersionedContract, IPendableAdmin, IPendableImplementation, IProtocolConstants, CallOptions } from "../common";
@@ -61,6 +61,10 @@ export interface ITradingFloorFunctionsGroup_SettlementAndPool {
61
61
  lexPoolForAsset(asset: string, callOptions?: CallOptions): Promise<string>;
62
62
  poolAccountantForAsset(asset: string, callOptions?: CallOptions): Promise<string>;
63
63
  }
64
+ export interface ITradingFloorFunctionsGroup_PerAssetConfig {
65
+ maxProfitBypassThresholdByAsset(asset: string, callOptions?: CallOptions): Promise<bigint>;
66
+ setMaxProfitBypassThreshold(asset: string, threshold: bigint, callOptions?: CallOptions): Promise<ContractTransactionResponse>;
67
+ }
64
68
  export interface ITradingFloorFunctionsGroup_Deprecated {
65
69
  deprecated_pairTraders(asset: string, pairId: bigint, index: bigint, callOptions?: CallOptions): Promise<string>;
66
70
  deprecated_pairTradersArray(asset: string, pairIndex: bigint, callOptions?: CallOptions): Promise<string[]>;
@@ -100,6 +104,7 @@ export interface ITradingFloorFunctionsGroup_Constants extends IProtocolConstant
100
104
  export interface ITradingFloorService {
101
105
  positionQueries: ITradingFloorFunctionsGroup_PositionQueries;
102
106
  settlementAndPool: ITradingFloorFunctionsGroup_SettlementAndPool;
107
+ perAssetConfig: ITradingFloorFunctionsGroup_PerAssetConfig;
103
108
  deprecated: ITradingFloorFunctionsGroup_Deprecated;
104
109
  traderTracking: ITradingFloorFunctionsGroup_TraderTracking;
105
110
  tradingParameters: ITradingFloorFunctionsGroup_TradingParameters;
@@ -1 +1 @@
1
- {"version":3,"file":"ITradingFloorService.d.ts","sourceRoot":"","sources":["../../../../../lib/contractsIntegration/TradingFloorService/ITradingFloorService.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ITradingFloorService.d.ts","sourceRoot":"","sources":["../../../../../lib/contractsIntegration/TradingFloorService/ITradingFloorService.ts"],"names":[],"mappings":"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"}
@@ -1,12 +1,13 @@
1
1
  import { Signer, Provider } from "ethers";
2
2
  import { TradingFloorV1 } from "../../typechain/contracts/Lynx/TradingFloor/TradingFloorV1";
3
- import { ITradingFloorService, ITradingFloorFunctionsGroup_PositionQueries, ITradingFloorFunctionsGroup_SettlementAndPool, ITradingFloorFunctionsGroup_Deprecated, ITradingFloorFunctionsGroup_TraderTracking, ITradingFloorFunctionsGroup_TradingParameters, ITradingFloorFunctionsGroup_Fees, ITradingFloorFunctionsGroup_ContractReferences, ITradingFloorFunctionsGroup_Constants } from "./ITradingFloorService";
3
+ import { ITradingFloorService, ITradingFloorFunctionsGroup_PositionQueries, ITradingFloorFunctionsGroup_SettlementAndPool, ITradingFloorFunctionsGroup_PerAssetConfig, ITradingFloorFunctionsGroup_Deprecated, ITradingFloorFunctionsGroup_TraderTracking, ITradingFloorFunctionsGroup_TradingParameters, ITradingFloorFunctionsGroup_Fees, ITradingFloorFunctionsGroup_ContractReferences, ITradingFloorFunctionsGroup_Constants } from "./ITradingFloorService";
4
4
  import { ILynxVersionedContract, IPendableAdmin, IPendableImplementation } from "../common";
5
5
  export declare class TradingFloorService implements ITradingFloorService {
6
6
  private signerOrProvider;
7
7
  private tradingFloorContract;
8
8
  positionQueries: ITradingFloorFunctionsGroup_PositionQueries;
9
9
  settlementAndPool: ITradingFloorFunctionsGroup_SettlementAndPool;
10
+ perAssetConfig: ITradingFloorFunctionsGroup_PerAssetConfig;
10
11
  deprecated: ITradingFloorFunctionsGroup_Deprecated;
11
12
  traderTracking: ITradingFloorFunctionsGroup_TraderTracking;
12
13
  tradingParameters: ITradingFloorFunctionsGroup_TradingParameters;
@@ -1 +1 @@
1
- {"version":3,"file":"TradingFloorService.d.ts","sourceRoot":"","sources":["../../../../../lib/contractsIntegration/TradingFloorService/TradingFloorService.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,MAAM,EACN,QAAQ,EAET,MAAM,QAAQ,CAAA;AAEf,OAAO,EAAE,cAAc,EAAE,MAAM,4DAA4D,CAAA;AAE3F,OAAO,EACL,oBAAoB,EACpB,2CAA2C,EAC3C,6CAA6C,EAC7C,sCAAsC,EACtC,0CAA0C,EAC1C,6CAA6C,EAC7C,gCAAgC,EAChC,8CAA8C,EAC9C,qCAAqC,EAGtC,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EAAE,sBAAsB,EAAE,cAAc,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAqWxG,qBAAa,mBAAoB,YAAW,oBAAoB;IAiB5D,OAAO,CAAC,gBAAgB;IAhB1B,OAAO,CAAC,oBAAoB,CAAgB;IAErC,eAAe,EAAE,2CAA2C,CAAA;IAC5D,iBAAiB,EAAE,6CAA6C,CAAA;IAChE,UAAU,EAAE,sCAAsC,CAAA;IAClD,cAAc,EAAE,0CAA0C,CAAA;IAC1D,iBAAiB,EAAE,6CAA6C,CAAA;IAChE,IAAI,EAAE,gCAAgC,CAAA;IACtC,kBAAkB,EAAE,8CAA8C,CAAA;IAClE,aAAa,EAAE,cAAc,CAAA;IAC7B,sBAAsB,EAAE,uBAAuB,CAAA;IAC/C,qBAAqB,EAAE,sBAAsB,CAAA;IAC7C,SAAS,EAAE,qCAAqC,CAAA;gBAGrD,OAAO,EAAE,MAAM,EACP,gBAAgB,EAAE,MAAM,GAAG,QAAQ;IAoB7C,WAAW,IAAI,cAAc;CAG9B"}
1
+ {"version":3,"file":"TradingFloorService.d.ts","sourceRoot":"","sources":["../../../../../lib/contractsIntegration/TradingFloorService/TradingFloorService.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,MAAM,EACN,QAAQ,EAET,MAAM,QAAQ,CAAA;AAEf,OAAO,EAAE,cAAc,EAAE,MAAM,4DAA4D,CAAA;AAE3F,OAAO,EACL,oBAAoB,EACpB,2CAA2C,EAC3C,6CAA6C,EAC7C,0CAA0C,EAC1C,sCAAsC,EACtC,0CAA0C,EAC1C,6CAA6C,EAC7C,gCAAgC,EAChC,8CAA8C,EAC9C,qCAAqC,EAGtC,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EAAE,sBAAsB,EAAE,cAAc,EAAE,uBAAuB,EAAe,MAAM,WAAW,CAAA;AAqXxG,qBAAa,mBAAoB,YAAW,oBAAoB;IAkB5D,OAAO,CAAC,gBAAgB;IAjB1B,OAAO,CAAC,oBAAoB,CAAgB;IAErC,eAAe,EAAE,2CAA2C,CAAA;IAC5D,iBAAiB,EAAE,6CAA6C,CAAA;IAChE,cAAc,EAAE,0CAA0C,CAAA;IAC1D,UAAU,EAAE,sCAAsC,CAAA;IAClD,cAAc,EAAE,0CAA0C,CAAA;IAC1D,iBAAiB,EAAE,6CAA6C,CAAA;IAChE,IAAI,EAAE,gCAAgC,CAAA;IACtC,kBAAkB,EAAE,8CAA8C,CAAA;IAClE,aAAa,EAAE,cAAc,CAAA;IAC7B,sBAAsB,EAAE,uBAAuB,CAAA;IAC/C,qBAAqB,EAAE,sBAAsB,CAAA;IAC7C,SAAS,EAAE,qCAAqC,CAAA;gBAGrD,OAAO,EAAE,MAAM,EACP,gBAAgB,EAAE,MAAM,GAAG,QAAQ;IAqB7C,WAAW,IAAI,cAAc;CAG9B"}
@@ -1 +1 @@
1
- {"version":3,"file":"flareFeedConstants.d.ts","sourceRoot":"","sources":["../../../../../lib/priceFeeds/flare/flareFeedConstants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAGrE,eAAO,MAAM,0BAA0B,EAAE,MAAM,CAAC,QAAQ,EAAE,MAAM,CAmE/D,CAAC;AAGF,eAAO,MAAM,2BAA2B,0BAKlC,CAAC"}
1
+ {"version":3,"file":"flareFeedConstants.d.ts","sourceRoot":"","sources":["../../../../../lib/priceFeeds/flare/flareFeedConstants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAGrE,eAAO,MAAM,0BAA0B,EAAE,MAAM,CAAC,QAAQ,EAAE,MAAM,CAuE/D,CAAC;AAGF,eAAO,MAAM,2BAA2B,0BAKlC,CAAC"}
@@ -0,0 +1,5 @@
1
+ import { TPairIds } from "../../../constants/pairIds";
2
+ export declare const PYTH_HERMES_PRICE_KEYS: Record<TPairIds, string>;
3
+ export declare const PYTH_HERMES_FEED_IDS: Record<TPairIds, string>;
4
+ export declare const PYTH_HERMES_FEED_ID_TO_PAIR: Record<string, TPairIds>;
5
+ //# sourceMappingURL=hermesFeedConstants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hermesFeedConstants.d.ts","sourceRoot":"","sources":["../../../../../../lib/priceFeeds/pyth/hermes/hermesFeedConstants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AAExE,eAAO,MAAM,sBAAsB,EAAE,MAAM,CAAC,QAAQ,EAAE,MAAM,CA6D3D,CAAC;AAGF,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,QAAQ,EAAE,MAAM,CAiFzD,CAAC;AAGF,eAAO,MAAM,2BAA2B,0BAKlC,CAAC"}
@@ -0,0 +1,14 @@
1
+ import { TPairIds } from "../../../constants/pairIds";
2
+ /**
3
+ * Get the Pyth Hermes symbol (e.g. "Crypto.BTC/USD") for a pair
4
+ */
5
+ export declare function getHermesPriceKeyForPair(pairId: TPairIds): string;
6
+ /**
7
+ * Get the Pyth Hermes feed id (32-byte hex hash) for a pair
8
+ */
9
+ export declare function getHermesFeedIdForPair(pairId: TPairIds): string;
10
+ /**
11
+ * Get the pair id for a Pyth Hermes feed id (reverse lookup)
12
+ */
13
+ export declare function getPairIdForHermesFeedId(feedId: string): TPairIds;
14
+ //# sourceMappingURL=hermesFeedFunctions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hermesFeedFunctions.d.ts","sourceRoot":"","sources":["../../../../../../lib/priceFeeds/pyth/hermes/hermesFeedFunctions.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AAEtD;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,MAAM,EAAE,QAAQ,GAAG,MAAM,CAEjE;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,QAAQ,GAAG,MAAM,CAE/D;AAED;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,MAAM,EAAE,MAAM,GAAG,QAAQ,CAEjE"}
@@ -0,0 +1,11 @@
1
+ import { CombinedPriceData } from "../../interfaces";
2
+ /**
3
+ * Fetches historical price data from Pyth Hermes for a specific timestamp or later
4
+ * Only searches forward in time (timestamp >= startTimestamp), never backwards
5
+ * @param priceFeedId - The Pyth Hermes price feed ID (32-byte hex hash)
6
+ * @param startTimestamp - The minimum timestamp to search from
7
+ * @param maxTimeGap - Maximum seconds to search forward from startTimestamp
8
+ * @param pairId - Optional pair identifier included in error messages for context
9
+ */
10
+ export declare function getHermesPriceForTimestamp(priceFeedId: string, startTimestamp: number, maxTimeGap: number, pairId?: number): Promise<CombinedPriceData>;
11
+ //# sourceMappingURL=hermesPriceData.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hermesPriceData.d.ts","sourceRoot":"","sources":["../../../../../../lib/priceFeeds/pyth/hermes/hermesPriceData.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAgCrD;;;;;;;GAOG;AACH,wBAAsB,0BAA0B,CAC9C,WAAW,EAAE,MAAM,EACnB,cAAc,EAAE,MAAM,EACtB,UAAU,EAAE,MAAM,EAClB,MAAM,CAAC,EAAE,MAAM,GACd,OAAO,CAAC,iBAAiB,CAAC,CAkB5B"}
@@ -0,0 +1,54 @@
1
+ import { TPairIds } from "../../../constants/pairIds";
2
+ /**
3
+ * Pyth Lazer feed identifiers are u32 integers (not 32-byte hex hashes like Hermes).
4
+ * Branding this as a distinct nominal type prevents accidentally passing a Hermes
5
+ * hash where a Lazer numeric id is expected, and vice versa.
6
+ */
7
+ export type PythLazerFeedId = number & {
8
+ readonly __brand: "PythLazerFeedId";
9
+ };
10
+ /**
11
+ * Pyth Lazer symbol per pair. Mirrors PYTH_HERMES_PRICE_KEYS but uses Lazer's
12
+ * symbol convention (e.g. "FX." uppercase prefix instead of Hermes' "Fx.").
13
+ */
14
+ export declare const PYTH_LAZER_PRICE_KEYS: Record<TPairIds, string>;
15
+ /**
16
+ * Pyth Lazer u32 feed identifiers per pair. Source of truth is
17
+ * https://pyth.dourolabs.app/v1/symbols (pyth_lazer_id field).
18
+ *
19
+ * CAT pairs intentionally share the same feed id as their non-CAT counterpart
20
+ * (the underlying market data is identical). This is a behavior change vs the
21
+ * Hermes map, which uses empty-string sentinels for CAT pairs — Lazer callers
22
+ * always get a usable id back.
23
+ *
24
+ * Feed availability on Lazer at the time these were captured (verify with
25
+ * scripts/verifyLazerMapping.ts before relying on any of this).
26
+ *
27
+ * IMPORTANT — MIGRATION CONTEXT: Hermes is scheduled for deprecation
28
+ * (~2026-07). Lazer is the long-term path. The two entries below are
29
+ * migration blockers that need to be resolved (Pyth state change OR feed
30
+ * replacement) before Hermes shutoff, otherwise we lose pricing entirely:
31
+ *
32
+ * - Crypto.FLR/USD (id 191) — Lazer state `coming_soon`. Querying returns
33
+ * HTTP 400 "Price feed id 191 is not ready". Today FLR pricing works via
34
+ * Hermes and Flare; post-Hermes-shutoff only Flare remains if Pyth has
35
+ * not yet promoted 191 to `stable`. Re-run scripts/verifyLazerMapping.ts
36
+ * to check current state.
37
+ *
38
+ * - Commodities.USOILSPOT (id 657) — Lazer state `inactive`. Querying
39
+ * returns HTTP 400 "Price feed id 657 is not ready". Today USOIL pricing
40
+ * works via Hermes only (the Flare oracle does NOT publish USOIL). This
41
+ * is the more urgent migration blocker: if Pyth does not reactivate 657
42
+ * before Hermes shutoff, we need an alternative provider for USOIL or
43
+ * we lose the pair.
44
+ *
45
+ * All other ids are `stable`.
46
+ */
47
+ export declare const PYTH_LAZER_FEED_IDS: Record<TPairIds, PythLazerFeedId>;
48
+ /**
49
+ * Reverse lookup: Lazer feed id → pair id. CAT pairs share an id with their
50
+ * non-CAT base, so only the base pair is present — the reverse map returns the
51
+ * "canonical" non-CAT pair for any given Lazer feed id.
52
+ */
53
+ export declare const PYTH_LAZER_FEED_ID_TO_PAIR: Record<number, TPairIds>;
54
+ //# sourceMappingURL=lazerFeedConstants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lazerFeedConstants.d.ts","sourceRoot":"","sources":["../../../../../../lib/priceFeeds/pyth/lazer/lazerFeedConstants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AAiCxE;;;;GAIG;AACH,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG;IAAE,QAAQ,CAAC,OAAO,EAAE,iBAAiB,CAAA;CAAE,CAAC;AAI/E;;;GAGG;AACH,eAAO,MAAM,qBAAqB,EAAE,MAAM,CAAC,QAAQ,EAAE,MAAM,CAsD1D,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,QAAQ,EAAE,eAAe,CAsDjE,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,0BAA0B,EAAE,MAAM,CAAC,MAAM,EAAE,QAAQ,CAiB5D,CAAC"}
@@ -0,0 +1,16 @@
1
+ import { PythLazerFeedId } from "./lazerFeedConstants";
2
+ import { TPairIds } from "../../../constants/pairIds";
3
+ /**
4
+ * Get the Pyth Lazer symbol (e.g. "Crypto.BTC/USD") for a pair
5
+ */
6
+ export declare function getLazerPriceKeyForPair(pairId: TPairIds): string;
7
+ /**
8
+ * Get the Pyth Lazer u32 feed id for a pair
9
+ */
10
+ export declare function getLazerFeedIdForPair(pairId: TPairIds): PythLazerFeedId;
11
+ /**
12
+ * Get the canonical (non-CAT) pair id for a Pyth Lazer feed id, or undefined
13
+ * if no pair is registered for that feed id.
14
+ */
15
+ export declare function getPairIdForLazerFeedId(feedId: PythLazerFeedId): TPairIds | undefined;
16
+ //# sourceMappingURL=lazerFeedFunctions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lazerFeedFunctions.d.ts","sourceRoot":"","sources":["../../../../../../lib/priceFeeds/pyth/lazer/lazerFeedFunctions.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,eAAe,EAChB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AAEtD;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,QAAQ,GAAG,MAAM,CAEhE;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,QAAQ,GAAG,eAAe,CAEvE;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CACrC,MAAM,EAAE,eAAe,GACtB,QAAQ,GAAG,SAAS,CAEtB"}
@@ -0,0 +1,64 @@
1
+ import { PythLazerFeedId } from "./lazerFeedConstants";
2
+ import { LazerVerifiablePayload } from "./lazerSigningFormats";
3
+ /**
4
+ * Subscription channel — selects update cadence. `real_time` pushes every
5
+ * publisher update; fixed-rate channels coalesce updates onto a fixed cadence.
6
+ */
7
+ export type LazerChannel = "real_time" | "fixed_rate@50ms" | "fixed_rate@200ms" | "fixed_rate@1000ms";
8
+ /**
9
+ * Trading session of an underlying market at the time of the update.
10
+ * Some markets (FX, equities, commodities) have non-regular sessions; crypto
11
+ * is always `regular`.
12
+ */
13
+ export type LazerMarketSession = "regular" | "pre" | "post" | "closed" | (string & {});
14
+ /**
15
+ * A single price feed update inside a `streamUpdated` message.
16
+ * Optional fields appear only when requested via the subscription `properties`.
17
+ *
18
+ * Numeric fields delivered as strings by the wire format (large `i64` values
19
+ * exceed JS safe-integer range) are kept as strings here; consumers should
20
+ * `BigInt(...)` them before arithmetic.
21
+ */
22
+ export interface LazerPriceFeedUpdate {
23
+ priceFeedId: PythLazerFeedId;
24
+ /** i64 mantissa as string. Actual price = `BigInt(price) * 10n ** BigInt(exponent)`. */
25
+ price: string;
26
+ /** i16 power-of-ten exponent (typically negative, e.g. -8). */
27
+ exponent: number;
28
+ /** i64 confidence interval, same scale as price. */
29
+ confidence: number;
30
+ /** Number of publishers contributing to this update. */
31
+ publisherCount: number;
32
+ marketSession: LazerMarketSession;
33
+ /** Microsecond Unix timestamp of when the price was generated. */
34
+ feedUpdateTimestamp: number;
35
+ bestBidPrice?: string;
36
+ bestAskPrice?: string;
37
+ emaPrice?: string;
38
+ emaConfidence?: number;
39
+ fundingRate?: string;
40
+ fundingTimestamp?: number;
41
+ fundingRateInterval?: number;
42
+ }
43
+ /**
44
+ * Wire shape of a Pyth Lazer `streamUpdated` WebSocket message.
45
+ *
46
+ * The `evm` / `solana` / `leEcdsa` / `leUnsigned` keys hold the binary signed
47
+ * payload(s) for whichever signing formats were requested in the subscription.
48
+ * Use {@link lazerPayloadToBytes} to convert a payload into the bytes that
49
+ * `PythLazer.verifyUpdate(bytes)` expects on EVM chains.
50
+ */
51
+ export interface LazerStreamUpdated {
52
+ type: "streamUpdated";
53
+ subscriptionId: number;
54
+ parsed: {
55
+ /** Microsecond Unix timestamp as a string (does not fit in JS Number for far-future values). */
56
+ timestampUs: string;
57
+ priceFeeds: LazerPriceFeedUpdate[];
58
+ };
59
+ evm?: LazerVerifiablePayload;
60
+ solana?: LazerVerifiablePayload;
61
+ leEcdsa?: LazerVerifiablePayload;
62
+ leUnsigned?: LazerVerifiablePayload;
63
+ }
64
+ //# sourceMappingURL=lazerPayloadTypes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lazerPayloadTypes.d.ts","sourceRoot":"","sources":["../../../../../../lib/priceFeeds/pyth/lazer/lazerPayloadTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAE/D;;;GAGG;AACH,MAAM,MAAM,YAAY,GACpB,WAAW,GACX,iBAAiB,GACjB,kBAAkB,GAClB,mBAAmB,CAAC;AAExB;;;;GAIG;AACH,MAAM,MAAM,kBAAkB,GAC1B,SAAS,GACT,KAAK,GACL,MAAM,GACN,QAAQ,GACR,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;AAElB;;;;;;;GAOG;AACH,MAAM,WAAW,oBAAoB;IACnC,WAAW,EAAE,eAAe,CAAC;IAC7B,wFAAwF;IACxF,KAAK,EAAE,MAAM,CAAC;IACd,+DAA+D;IAC/D,QAAQ,EAAE,MAAM,CAAC;IACjB,oDAAoD;IACpD,UAAU,EAAE,MAAM,CAAC;IACnB,wDAAwD;IACxD,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,kBAAkB,CAAC;IAClC,kEAAkE;IAClE,mBAAmB,EAAE,MAAM,CAAC;IAG5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,eAAe,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,MAAM,EAAE;QACN,gGAAgG;QAChG,WAAW,EAAE,MAAM,CAAC;QACpB,UAAU,EAAE,oBAAoB,EAAE,CAAC;KACpC,CAAC;IACF,GAAG,CAAC,EAAE,sBAAsB,CAAC;IAC7B,MAAM,CAAC,EAAE,sBAAsB,CAAC;IAChC,OAAO,CAAC,EAAE,sBAAsB,CAAC;IACjC,UAAU,CAAC,EAAE,sBAAsB,CAAC;CACrC"}
@@ -0,0 +1,26 @@
1
+ import { CombinedPriceData } from "../../interfaces";
2
+ import { PythLazerFeedId } from "./lazerFeedConstants";
3
+ import { LazerChannel } from "./lazerPayloadTypes";
4
+ export interface GetLazerPriceOptions {
5
+ /** Update channel to query. Defaults to `real_time`. */
6
+ channel?: LazerChannel;
7
+ /** Pair identifier included in error messages for context. */
8
+ pairId?: number;
9
+ /** Override the Lazer history base URL (e.g. for testing). */
10
+ baseUrl?: string;
11
+ }
12
+ /**
13
+ * Fetch unsigned historical price data from Pyth Lazer's History REST API
14
+ * for a single feed id at a specific timestamp.
15
+ *
16
+ * Returns the price snapshot the History API resolves at that timestamp.
17
+ * Throws if the API returns no row for the feed.
18
+ *
19
+ * @param feedId - Pyth Lazer u32 feed identifier
20
+ * @param timestampSec - Unix timestamp in seconds
21
+ * @param options.channel - `real_time` | `fixed_rate@50ms` | `fixed_rate@200ms` | `fixed_rate@1000ms` (default `real_time`)
22
+ * @param options.pairId - Pair id for error message context
23
+ * @param options.baseUrl - Override the API base URL
24
+ */
25
+ export declare function getLazerPriceForTimestamp(feedId: PythLazerFeedId, timestampSec: number, options?: GetLazerPriceOptions): Promise<CombinedPriceData>;
26
+ //# sourceMappingURL=lazerPriceData.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lazerPriceData.d.ts","sourceRoot":"","sources":["../../../../../../lib/priceFeeds/pyth/lazer/lazerPriceData.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAmDnD,MAAM,WAAW,oBAAoB;IACnC,wDAAwD;IACxD,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB,8DAA8D;IAC9D,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,8DAA8D;IAC9D,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;;;;;;;;;;;GAYG;AACH,wBAAsB,yBAAyB,CAC7C,MAAM,EAAE,eAAe,EACvB,YAAY,EAAE,MAAM,EACpB,OAAO,GAAE,oBAAyB,GACjC,OAAO,CAAC,iBAAiB,CAAC,CA2B5B"}
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Pyth Lazer binary payload encoding format, selected per subscription.
3
+ * The chosen format determines the on-chain verifier that can validate it.
4
+ *
5
+ * - `evm` — secp256k1 ECDSA, 65-byte signature. For EVM chains
6
+ * (Ethereum, Arbitrum, Optimism, Polygon, BSC, Avalanche).
7
+ * - `solana` — Ed25519 EdDSA, 64-byte signature. For Solana / Fogo /
8
+ * Ed25519-native chains.
9
+ * - `leEcdsa` — secp256k1 ECDSA in little-endian byte order. For custom
10
+ * integrations.
11
+ * - `leUnsigned` — No signature. Off-chain / dev only.
12
+ */
13
+ export type LazerSigningFormat = "evm" | "solana" | "leEcdsa" | "leUnsigned";
14
+ /**
15
+ * Verifiable on-chain payload as returned by Pyth Lazer in the WebSocket
16
+ * `streamUpdated` message under the `evm` (or `solana`, etc.) key.
17
+ *
18
+ * The encoding is chosen by the subscriber via `jsonBinaryEncoding` on the
19
+ * subscribe request, and the server echoes the choice back in `encoding`:
20
+ * - `'base64'` (Pyth's default) — `data` is a base64 string. Smaller
21
+ * WebSocket frames; needs decoding before on-chain submission.
22
+ * - `'hex'` — `data` is a hex string (may or may not be `0x`-prefixed;
23
+ * `lazerPayloadToBytes` handles either). Larger frames, but feeds
24
+ * straight into ethers/viem `bytes` args without a decode step.
25
+ */
26
+ export interface LazerVerifiablePayload {
27
+ encoding: "base64" | "hex";
28
+ data: string;
29
+ }
30
+ /**
31
+ * Convert a Lazer verifiable payload into a 0x-prefixed hex string suitable for
32
+ * submitting as the `bytes priceUpdate` argument to `PythLazer.verifyUpdate`
33
+ * (or any EVM contract method expecting raw payload bytes).
34
+ */
35
+ export declare function lazerPayloadToBytes(payload: LazerVerifiablePayload): string;
36
+ //# sourceMappingURL=lazerSigningFormats.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lazerSigningFormats.d.ts","sourceRoot":"","sources":["../../../../../../lib/priceFeeds/pyth/lazer/lazerSigningFormats.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AACH,MAAM,MAAM,kBAAkB,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAS,GAAG,YAAY,CAAC;AAE7E;;;;;;;;;;;GAWG;AACH,MAAM,WAAW,sBAAsB;IACrC,QAAQ,EAAE,QAAQ,GAAG,KAAK,CAAC;IAC3B,IAAI,EAAE,MAAM,CAAC;CACd;AAED;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,sBAAsB,GAAG,MAAM,CAW3E"}
@@ -105,8 +105,8 @@ export declare namespace PoolAccountantStructs {
105
105
  };
106
106
  }
107
107
  export interface TradingFloorV1Interface extends Interface {
108
- getFunction(nameOrSignature: "ACCURACY_IMPROVEMENT_SCALE" | "CONTRACT_NAME" | "CONTRACT_VERSION" | "FRACTION_SCALE" | "LEVERAGE_SCALE" | "MAX_FEE_FRACTION_FOR_CANCEL" | "PRECISION" | "_become" | "activePositionIdsByTrader" | "admin" | "cancelMarketCloseForPosition" | "cancelPendingPosition" | "closeExistingPosition_Limit" | "closeExistingPosition_Market" | "collectFee" | "deprecated_pairTraders" | "deprecated_pairTradersArray" | "deprecated_pairTradersInfo" | "feesMap" | "generatePositionHashId" | "getActivePositionIdsForTrader" | "getActivePositionsAmountForTrader" | "getContractName" | "getContractVersion" | "getNextPositionIndexForTrader" | "getPositionPortalInfo" | "getPositionRegistrationParams" | "getPositionTriggerInfo" | "implementation" | "initialCollateralByPositionId" | "isSettlementAssetSupported" | "lexPoolForAsset" | "maxSanityProfitF" | "maxSlF" | "maxTradesPerTrader" | "openNewPosition_limit" | "openNewPosition_market" | "pairTradersLastUsedPositionIndex" | "pausedPairs" | "pendingAdmin" | "pendingImplementation" | "poolAccountantForAsset" | "positionIdToActivePositionIndex" | "positionIdentifiersById" | "positionLimitsInfoById" | "positionsById" | "registry" | "setOpenedPositionToMarketClose" | "setPairPaused" | "setTradeParam" | "storePendingPosition" | "supportNewSettlementAsset" | "traders" | "tradersAmount" | "tradersIndex" | "triggerPricesById" | "updateOpenedPosition" | "updatePendingPosition_openLimit"): FunctionFragment;
109
- getEvent(nameOrSignatureOrTopic: "FeeCollected" | "FeeRegistered" | "IncorrectTraderIndex" | "NumberUpdated" | "OpenedPositionUpdated" | "PairPausedChange" | "PendingPositionCancelled" | "PendingPositionStored" | "PendingPositionStoredV1010" | "PendingPositionUpdated" | "PositionClosedLimit" | "PositionClosedMarket" | "PositionIdentifiersStored" | "PositionMarketCloseCancelled" | "PositionOpenCancelledByCap" | "PositionOpenCancelledByMarketPriceRange" | "PositionOpened" | "PositionSetForMarketClose" | "SettlementAssetAdded"): EventFragment;
108
+ getFunction(nameOrSignature: "ACCURACY_IMPROVEMENT_SCALE" | "CONTRACT_NAME" | "CONTRACT_VERSION" | "FRACTION_SCALE" | "LEVERAGE_SCALE" | "MAX_FEE_FRACTION_FOR_CANCEL" | "PRECISION" | "_become" | "activePositionIdsByTrader" | "admin" | "cancelMarketCloseForPosition" | "cancelPendingPosition" | "closeExistingPosition_Limit" | "closeExistingPosition_Market" | "collectFee" | "deprecated_pairTraders" | "deprecated_pairTradersArray" | "deprecated_pairTradersInfo" | "feesMap" | "generatePositionHashId" | "getActivePositionIdsForTrader" | "getActivePositionsAmountForTrader" | "getContractName" | "getContractVersion" | "getNextPositionIndexForTrader" | "getPositionPortalInfo" | "getPositionRegistrationParams" | "getPositionTriggerInfo" | "implementation" | "initialCollateralByPositionId" | "isSettlementAssetSupported" | "lexPoolForAsset" | "maxProfitBypassThresholdByAsset" | "maxSanityProfitF" | "maxSlF" | "maxTradesPerTrader" | "openNewPosition_limit" | "openNewPosition_market" | "pairTradersLastUsedPositionIndex" | "pausedPairs" | "pendingAdmin" | "pendingImplementation" | "poolAccountantForAsset" | "positionIdToActivePositionIndex" | "positionIdentifiersById" | "positionLimitsInfoById" | "positionsById" | "registry" | "setMaxProfitBypassThreshold" | "setOpenedPositionToMarketClose" | "setPairPaused" | "setTradeParam" | "storePendingPosition" | "supportNewSettlementAsset" | "traders" | "tradersAmount" | "tradersIndex" | "triggerPricesById" | "updateOpenedPosition" | "updatePendingPosition_openLimit"): FunctionFragment;
109
+ getEvent(nameOrSignatureOrTopic: "FeeCollected" | "FeeRegistered" | "IncorrectTraderIndex" | "MaxProfitBypassThresholdUpdated" | "NumberUpdated" | "OpenedPositionUpdated" | "PairPausedChange" | "PendingPositionCancelled" | "PendingPositionStored" | "PendingPositionStoredV1010" | "PendingPositionUpdated" | "PositionClosedLimit" | "PositionClosedMarket" | "PositionIdentifiersStored" | "PositionMarketCloseCancelled" | "PositionOpenCancelledByCap" | "PositionOpenCancelledByMarketPriceRange" | "PositionOpened" | "PositionSetForMarketClose" | "SettlementAssetAdded" | "SkewIncentiveRebate"): EventFragment;
110
110
  encodeFunctionData(functionFragment: "ACCURACY_IMPROVEMENT_SCALE", values?: undefined): string;
111
111
  encodeFunctionData(functionFragment: "CONTRACT_NAME", values?: undefined): string;
112
112
  encodeFunctionData(functionFragment: "CONTRACT_VERSION", values?: undefined): string;
@@ -139,6 +139,7 @@ export interface TradingFloorV1Interface extends Interface {
139
139
  encodeFunctionData(functionFragment: "initialCollateralByPositionId", values: [BytesLike]): string;
140
140
  encodeFunctionData(functionFragment: "isSettlementAssetSupported", values: [AddressLike]): string;
141
141
  encodeFunctionData(functionFragment: "lexPoolForAsset", values: [AddressLike]): string;
142
+ encodeFunctionData(functionFragment: "maxProfitBypassThresholdByAsset", values: [AddressLike]): string;
142
143
  encodeFunctionData(functionFragment: "maxSanityProfitF", values?: undefined): string;
143
144
  encodeFunctionData(functionFragment: "maxSlF", values?: undefined): string;
144
145
  encodeFunctionData(functionFragment: "maxTradesPerTrader", values?: undefined): string;
@@ -154,6 +155,7 @@ export interface TradingFloorV1Interface extends Interface {
154
155
  encodeFunctionData(functionFragment: "positionLimitsInfoById", values: [BytesLike]): string;
155
156
  encodeFunctionData(functionFragment: "positionsById", values: [BytesLike]): string;
156
157
  encodeFunctionData(functionFragment: "registry", values?: undefined): string;
158
+ encodeFunctionData(functionFragment: "setMaxProfitBypassThreshold", values: [AddressLike, BigNumberish]): string;
157
159
  encodeFunctionData(functionFragment: "setOpenedPositionToMarketClose", values: [BytesLike, BigNumberish, BigNumberish]): string;
158
160
  encodeFunctionData(functionFragment: "setPairPaused", values: [BigNumberish, boolean]): string;
159
161
  encodeFunctionData(functionFragment: "setTradeParam", values: [BigNumberish, BigNumberish]): string;
@@ -202,6 +204,7 @@ export interface TradingFloorV1Interface extends Interface {
202
204
  decodeFunctionResult(functionFragment: "initialCollateralByPositionId", data: BytesLike): Result;
203
205
  decodeFunctionResult(functionFragment: "isSettlementAssetSupported", data: BytesLike): Result;
204
206
  decodeFunctionResult(functionFragment: "lexPoolForAsset", data: BytesLike): Result;
207
+ decodeFunctionResult(functionFragment: "maxProfitBypassThresholdByAsset", data: BytesLike): Result;
205
208
  decodeFunctionResult(functionFragment: "maxSanityProfitF", data: BytesLike): Result;
206
209
  decodeFunctionResult(functionFragment: "maxSlF", data: BytesLike): Result;
207
210
  decodeFunctionResult(functionFragment: "maxTradesPerTrader", data: BytesLike): Result;
@@ -217,6 +220,7 @@ export interface TradingFloorV1Interface extends Interface {
217
220
  decodeFunctionResult(functionFragment: "positionLimitsInfoById", data: BytesLike): Result;
218
221
  decodeFunctionResult(functionFragment: "positionsById", data: BytesLike): Result;
219
222
  decodeFunctionResult(functionFragment: "registry", data: BytesLike): Result;
223
+ decodeFunctionResult(functionFragment: "setMaxProfitBypassThreshold", data: BytesLike): Result;
220
224
  decodeFunctionResult(functionFragment: "setOpenedPositionToMarketClose", data: BytesLike): Result;
221
225
  decodeFunctionResult(functionFragment: "setPairPaused", data: BytesLike): Result;
222
226
  decodeFunctionResult(functionFragment: "setTradeParam", data: BytesLike): Result;
@@ -298,6 +302,18 @@ export declare namespace IncorrectTraderIndexEvent {
298
302
  type Log = TypedEventLog<Event>;
299
303
  type LogDescription = TypedLogDescription<Event>;
300
304
  }
305
+ export declare namespace MaxProfitBypassThresholdUpdatedEvent {
306
+ type InputTuple = [asset: AddressLike, threshold: BigNumberish];
307
+ type OutputTuple = [asset: string, threshold: bigint];
308
+ interface OutputObject {
309
+ asset: string;
310
+ threshold: bigint;
311
+ }
312
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
313
+ type Filter = TypedDeferredTopicFilter<Event>;
314
+ type Log = TypedEventLog<Event>;
315
+ type LogDescription = TypedLogDescription<Event>;
316
+ }
301
317
  export declare namespace NumberUpdatedEvent {
302
318
  type InputTuple = [name: string, value: BigNumberish];
303
319
  type OutputTuple = [name: string, value: bigint];
@@ -644,6 +660,27 @@ export declare namespace SettlementAssetAddedEvent {
644
660
  type Log = TypedEventLog<Event>;
645
661
  type LogDescription = TypedLogDescription<Event>;
646
662
  }
663
+ export declare namespace SkewIncentiveRebateEvent {
664
+ type InputTuple = [
665
+ positionId: BytesLike,
666
+ trader: AddressLike,
667
+ rebateAmount: BigNumberish
668
+ ];
669
+ type OutputTuple = [
670
+ positionId: string,
671
+ trader: string,
672
+ rebateAmount: bigint
673
+ ];
674
+ interface OutputObject {
675
+ positionId: string;
676
+ trader: string;
677
+ rebateAmount: bigint;
678
+ }
679
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
680
+ type Filter = TypedDeferredTopicFilter<Event>;
681
+ type Log = TypedEventLog<Event>;
682
+ type LogDescription = TypedLogDescription<Event>;
683
+ }
647
684
  export interface TradingFloorV1 extends BaseContract {
648
685
  connect(runner?: ContractRunner | null): TradingFloorV1;
649
686
  waitForDeployment(): Promise<this>;
@@ -822,6 +859,11 @@ export interface TradingFloorV1 extends BaseContract {
822
859
  boolean
823
860
  ], "view">;
824
861
  lexPoolForAsset: TypedContractMethod<[arg0: AddressLike], [string], "view">;
862
+ maxProfitBypassThresholdByAsset: TypedContractMethod<[
863
+ arg0: AddressLike
864
+ ], [
865
+ bigint
866
+ ], "view">;
825
867
  maxSanityProfitF: TypedContractMethod<[], [bigint], "view">;
826
868
  maxSlF: TypedContractMethod<[], [bigint], "view">;
827
869
  maxTradesPerTrader: TypedContractMethod<[], [bigint], "view">;
@@ -911,6 +953,12 @@ export interface TradingFloorV1 extends BaseContract {
911
953
  }
912
954
  ], "view">;
913
955
  registry: TypedContractMethod<[], [string], "view">;
956
+ setMaxProfitBypassThreshold: TypedContractMethod<[
957
+ asset: AddressLike,
958
+ threshold: BigNumberish
959
+ ], [
960
+ void
961
+ ], "nonpayable">;
914
962
  setOpenedPositionToMarketClose: TypedContractMethod<[
915
963
  _positionId: BytesLike,
916
964
  _minPrice: BigNumberish,
@@ -1126,6 +1174,7 @@ export interface TradingFloorV1 extends BaseContract {
1126
1174
  getFunction(nameOrSignature: "initialCollateralByPositionId"): TypedContractMethod<[arg0: BytesLike], [bigint], "view">;
1127
1175
  getFunction(nameOrSignature: "isSettlementAssetSupported"): TypedContractMethod<[settlementAsset: AddressLike], [boolean], "view">;
1128
1176
  getFunction(nameOrSignature: "lexPoolForAsset"): TypedContractMethod<[arg0: AddressLike], [string], "view">;
1177
+ getFunction(nameOrSignature: "maxProfitBypassThresholdByAsset"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
1129
1178
  getFunction(nameOrSignature: "maxSanityProfitF"): TypedContractMethod<[], [bigint], "view">;
1130
1179
  getFunction(nameOrSignature: "maxSlF"): TypedContractMethod<[], [bigint], "view">;
1131
1180
  getFunction(nameOrSignature: "maxTradesPerTrader"): TypedContractMethod<[], [bigint], "view">;
@@ -1207,6 +1256,12 @@ export interface TradingFloorV1 extends BaseContract {
1207
1256
  }
1208
1257
  ], "view">;
1209
1258
  getFunction(nameOrSignature: "registry"): TypedContractMethod<[], [string], "view">;
1259
+ getFunction(nameOrSignature: "setMaxProfitBypassThreshold"): TypedContractMethod<[
1260
+ asset: AddressLike,
1261
+ threshold: BigNumberish
1262
+ ], [
1263
+ void
1264
+ ], "nonpayable">;
1210
1265
  getFunction(nameOrSignature: "setOpenedPositionToMarketClose"): TypedContractMethod<[
1211
1266
  _positionId: BytesLike,
1212
1267
  _minPrice: BigNumberish,
@@ -1279,6 +1334,7 @@ export interface TradingFloorV1 extends BaseContract {
1279
1334
  getEvent(key: "FeeCollected"): TypedContractEvent<FeeCollectedEvent.InputTuple, FeeCollectedEvent.OutputTuple, FeeCollectedEvent.OutputObject>;
1280
1335
  getEvent(key: "FeeRegistered"): TypedContractEvent<FeeRegisteredEvent.InputTuple, FeeRegisteredEvent.OutputTuple, FeeRegisteredEvent.OutputObject>;
1281
1336
  getEvent(key: "IncorrectTraderIndex"): TypedContractEvent<IncorrectTraderIndexEvent.InputTuple, IncorrectTraderIndexEvent.OutputTuple, IncorrectTraderIndexEvent.OutputObject>;
1337
+ getEvent(key: "MaxProfitBypassThresholdUpdated"): TypedContractEvent<MaxProfitBypassThresholdUpdatedEvent.InputTuple, MaxProfitBypassThresholdUpdatedEvent.OutputTuple, MaxProfitBypassThresholdUpdatedEvent.OutputObject>;
1282
1338
  getEvent(key: "NumberUpdated"): TypedContractEvent<NumberUpdatedEvent.InputTuple, NumberUpdatedEvent.OutputTuple, NumberUpdatedEvent.OutputObject>;
1283
1339
  getEvent(key: "OpenedPositionUpdated"): TypedContractEvent<OpenedPositionUpdatedEvent.InputTuple, OpenedPositionUpdatedEvent.OutputTuple, OpenedPositionUpdatedEvent.OutputObject>;
1284
1340
  getEvent(key: "PairPausedChange"): TypedContractEvent<PairPausedChangeEvent.InputTuple, PairPausedChangeEvent.OutputTuple, PairPausedChangeEvent.OutputObject>;
@@ -1295,6 +1351,7 @@ export interface TradingFloorV1 extends BaseContract {
1295
1351
  getEvent(key: "PositionOpened"): TypedContractEvent<PositionOpenedEvent.InputTuple, PositionOpenedEvent.OutputTuple, PositionOpenedEvent.OutputObject>;
1296
1352
  getEvent(key: "PositionSetForMarketClose"): TypedContractEvent<PositionSetForMarketCloseEvent.InputTuple, PositionSetForMarketCloseEvent.OutputTuple, PositionSetForMarketCloseEvent.OutputObject>;
1297
1353
  getEvent(key: "SettlementAssetAdded"): TypedContractEvent<SettlementAssetAddedEvent.InputTuple, SettlementAssetAddedEvent.OutputTuple, SettlementAssetAddedEvent.OutputObject>;
1354
+ getEvent(key: "SkewIncentiveRebate"): TypedContractEvent<SkewIncentiveRebateEvent.InputTuple, SkewIncentiveRebateEvent.OutputTuple, SkewIncentiveRebateEvent.OutputObject>;
1298
1355
  filters: {
1299
1356
  "FeeCollected(address,uint8,address,uint256)": TypedContractEvent<FeeCollectedEvent.InputTuple, FeeCollectedEvent.OutputTuple, FeeCollectedEvent.OutputObject>;
1300
1357
  FeeCollected: TypedContractEvent<FeeCollectedEvent.InputTuple, FeeCollectedEvent.OutputTuple, FeeCollectedEvent.OutputObject>;
@@ -1302,6 +1359,8 @@ export interface TradingFloorV1 extends BaseContract {
1302
1359
  FeeRegistered: TypedContractEvent<FeeRegisteredEvent.InputTuple, FeeRegisteredEvent.OutputTuple, FeeRegisteredEvent.OutputObject>;
1303
1360
  "IncorrectTraderIndex(address,uint256,address)": TypedContractEvent<IncorrectTraderIndexEvent.InputTuple, IncorrectTraderIndexEvent.OutputTuple, IncorrectTraderIndexEvent.OutputObject>;
1304
1361
  IncorrectTraderIndex: TypedContractEvent<IncorrectTraderIndexEvent.InputTuple, IncorrectTraderIndexEvent.OutputTuple, IncorrectTraderIndexEvent.OutputObject>;
1362
+ "MaxProfitBypassThresholdUpdated(address,uint256)": TypedContractEvent<MaxProfitBypassThresholdUpdatedEvent.InputTuple, MaxProfitBypassThresholdUpdatedEvent.OutputTuple, MaxProfitBypassThresholdUpdatedEvent.OutputObject>;
1363
+ MaxProfitBypassThresholdUpdated: TypedContractEvent<MaxProfitBypassThresholdUpdatedEvent.InputTuple, MaxProfitBypassThresholdUpdatedEvent.OutputTuple, MaxProfitBypassThresholdUpdatedEvent.OutputObject>;
1305
1364
  "NumberUpdated(string,uint256)": TypedContractEvent<NumberUpdatedEvent.InputTuple, NumberUpdatedEvent.OutputTuple, NumberUpdatedEvent.OutputObject>;
1306
1365
  NumberUpdated: TypedContractEvent<NumberUpdatedEvent.InputTuple, NumberUpdatedEvent.OutputTuple, NumberUpdatedEvent.OutputObject>;
1307
1366
  "OpenedPositionUpdated(bytes32,uint16,bool,uint8,uint64)": TypedContractEvent<OpenedPositionUpdatedEvent.InputTuple, OpenedPositionUpdatedEvent.OutputTuple, OpenedPositionUpdatedEvent.OutputObject>;
@@ -1334,6 +1393,8 @@ export interface TradingFloorV1 extends BaseContract {
1334
1393
  PositionSetForMarketClose: TypedContractEvent<PositionSetForMarketCloseEvent.InputTuple, PositionSetForMarketCloseEvent.OutputTuple, PositionSetForMarketCloseEvent.OutputObject>;
1335
1394
  "SettlementAssetAdded(address,address,address)": TypedContractEvent<SettlementAssetAddedEvent.InputTuple, SettlementAssetAddedEvent.OutputTuple, SettlementAssetAddedEvent.OutputObject>;
1336
1395
  SettlementAssetAdded: TypedContractEvent<SettlementAssetAddedEvent.InputTuple, SettlementAssetAddedEvent.OutputTuple, SettlementAssetAddedEvent.OutputObject>;
1396
+ "SkewIncentiveRebate(bytes32,address,uint256)": TypedContractEvent<SkewIncentiveRebateEvent.InputTuple, SkewIncentiveRebateEvent.OutputTuple, SkewIncentiveRebateEvent.OutputObject>;
1397
+ SkewIncentiveRebate: TypedContractEvent<SkewIncentiveRebateEvent.InputTuple, SkewIncentiveRebateEvent.OutputTuple, SkewIncentiveRebateEvent.OutputObject>;
1337
1398
  };
1338
1399
  }
1339
1400
  //# sourceMappingURL=TradingFloorV1.d.ts.map