lynx-client 0.0.1-beta.1

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 (188) hide show
  1. package/README.md +4 -0
  2. package/dist/cjs/addresses/lensAddresses.js +29 -0
  3. package/dist/cjs/common/constants/contractEnums.js +138 -0
  4. package/dist/cjs/common/constants/feeIds.js +27 -0
  5. package/dist/cjs/common/constants/generalConstants.js +4 -0
  6. package/dist/cjs/common/constants/groupIds.js +27 -0
  7. package/dist/cjs/common/constants/pairIds.js +91 -0
  8. package/dist/cjs/common/constants/scales.js +24 -0
  9. package/dist/cjs/common/contractsIntegration/deployedContractsConnector.js +16 -0
  10. package/dist/cjs/common/priceFeeds/pyth/pythFeedConstants.js +63 -0
  11. package/dist/cjs/common/priceFeeds/pyth/pythFeedFunctions.js +11 -0
  12. package/dist/cjs/common/typechain/common.js +2 -0
  13. package/dist/cjs/common/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.js +2 -0
  14. package/dist/cjs/common/typechain/contracts/Peripheral/Lens/LexLens.js +2 -0
  15. package/dist/cjs/common/typechain/contracts/Peripheral/Lens/TradingFloorLens.js +2 -0
  16. package/dist/cjs/common/typechain/contracts/Peripheral/Lens/TriggersAndPortalLens.js +2 -0
  17. package/dist/cjs/common/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.js +201 -0
  18. package/dist/cjs/common/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.js +2269 -0
  19. package/dist/cjs/common/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +1339 -0
  20. package/dist/cjs/common/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.js +253 -0
  21. package/dist/cjs/index.js +46 -0
  22. package/dist/cjs/utils/addresses.js +14 -0
  23. package/dist/cjs/utils/bignumbers.js +35 -0
  24. package/dist/cjs/utils/chainTypes.js +20 -0
  25. package/dist/cjs/utils/chipsCalculationsUtils.js +12 -0
  26. package/dist/cjs/utils/cloning.js +17 -0
  27. package/dist/cjs/utils/enumTypes.js +2 -0
  28. package/dist/cjs/utils/ethersTypes.js +51 -0
  29. package/dist/cjs/utils/hashes.js +8 -0
  30. package/dist/cjs/utils/leverageCalculationsUtils.js +25 -0
  31. package/dist/cjs/utils/lynxScalesUtils.js +20 -0
  32. package/dist/cjs/utils/types.js +3 -0
  33. package/dist/esm/addresses/lensAddresses.d.ts +27 -0
  34. package/dist/esm/addresses/lensAddresses.d.ts.map +1 -0
  35. package/dist/esm/addresses/lensAddresses.js +29 -0
  36. package/dist/esm/common/constants/contractEnums.d.ts +148 -0
  37. package/dist/esm/common/constants/contractEnums.d.ts.map +1 -0
  38. package/dist/esm/common/constants/contractEnums.js +138 -0
  39. package/dist/esm/common/constants/feeIds.d.ts +13 -0
  40. package/dist/esm/common/constants/feeIds.d.ts.map +1 -0
  41. package/dist/esm/common/constants/feeIds.js +27 -0
  42. package/dist/esm/common/constants/generalConstants.d.ts +2 -0
  43. package/dist/esm/common/constants/generalConstants.d.ts.map +1 -0
  44. package/dist/esm/common/constants/generalConstants.js +4 -0
  45. package/dist/esm/common/constants/groupIds.d.ts +15 -0
  46. package/dist/esm/common/constants/groupIds.d.ts.map +1 -0
  47. package/dist/esm/common/constants/groupIds.js +27 -0
  48. package/dist/esm/common/constants/pairIds.d.ts +40 -0
  49. package/dist/esm/common/constants/pairIds.d.ts.map +1 -0
  50. package/dist/esm/common/constants/pairIds.js +91 -0
  51. package/dist/esm/common/constants/scales.d.ts +16 -0
  52. package/dist/esm/common/constants/scales.d.ts.map +1 -0
  53. package/dist/esm/common/constants/scales.js +24 -0
  54. package/dist/esm/common/contractsIntegration/deployedContractsConnector.d.ts +7 -0
  55. package/dist/esm/common/contractsIntegration/deployedContractsConnector.d.ts.map +1 -0
  56. package/dist/esm/common/contractsIntegration/deployedContractsConnector.js +16 -0
  57. package/dist/esm/common/priceFeeds/pyth/pythFeedConstants.d.ts +5 -0
  58. package/dist/esm/common/priceFeeds/pyth/pythFeedConstants.d.ts.map +1 -0
  59. package/dist/esm/common/priceFeeds/pyth/pythFeedConstants.js +63 -0
  60. package/dist/esm/common/priceFeeds/pyth/pythFeedFunctions.d.ts +7 -0
  61. package/dist/esm/common/priceFeeds/pyth/pythFeedFunctions.d.ts.map +1 -0
  62. package/dist/esm/common/priceFeeds/pyth/pythFeedFunctions.js +11 -0
  63. package/dist/esm/common/typechain/common.d.ts +51 -0
  64. package/dist/esm/common/typechain/common.d.ts.map +1 -0
  65. package/dist/esm/common/typechain/common.js +2 -0
  66. package/dist/esm/common/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts +102 -0
  67. package/dist/esm/common/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts.map +1 -0
  68. package/dist/esm/common/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.js +2 -0
  69. package/dist/esm/common/typechain/contracts/Peripheral/Lens/LexLens.d.ts +740 -0
  70. package/dist/esm/common/typechain/contracts/Peripheral/Lens/LexLens.d.ts.map +1 -0
  71. package/dist/esm/common/typechain/contracts/Peripheral/Lens/LexLens.js +2 -0
  72. package/dist/esm/common/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts +390 -0
  73. package/dist/esm/common/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts.map +1 -0
  74. package/dist/esm/common/typechain/contracts/Peripheral/Lens/TradingFloorLens.js +2 -0
  75. package/dist/esm/common/typechain/contracts/Peripheral/Lens/TriggersAndPortalLens.d.ts +152 -0
  76. package/dist/esm/common/typechain/contracts/Peripheral/Lens/TriggersAndPortalLens.d.ts.map +1 -0
  77. package/dist/esm/common/typechain/contracts/Peripheral/Lens/TriggersAndPortalLens.js +2 -0
  78. package/dist/esm/common/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts +146 -0
  79. package/dist/esm/common/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts.map +1 -0
  80. package/dist/esm/common/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.js +201 -0
  81. package/dist/esm/common/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts +1747 -0
  82. package/dist/esm/common/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts.map +1 -0
  83. package/dist/esm/common/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.js +2269 -0
  84. package/dist/esm/common/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +1042 -0
  85. package/dist/esm/common/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts.map +1 -0
  86. package/dist/esm/common/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +1339 -0
  87. package/dist/esm/common/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts +187 -0
  88. package/dist/esm/common/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts.map +1 -0
  89. package/dist/esm/common/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.js +253 -0
  90. package/dist/esm/index.d.ts +30 -0
  91. package/dist/esm/index.d.ts.map +1 -0
  92. package/dist/esm/index.js +46 -0
  93. package/dist/esm/utils/addresses.d.ts +4 -0
  94. package/dist/esm/utils/addresses.d.ts.map +1 -0
  95. package/dist/esm/utils/addresses.js +14 -0
  96. package/dist/esm/utils/bignumbers.d.ts +6 -0
  97. package/dist/esm/utils/bignumbers.d.ts.map +1 -0
  98. package/dist/esm/utils/bignumbers.js +35 -0
  99. package/dist/esm/utils/chainTypes.d.ts +137 -0
  100. package/dist/esm/utils/chainTypes.d.ts.map +1 -0
  101. package/dist/esm/utils/chainTypes.js +20 -0
  102. package/dist/esm/utils/chipsCalculationsUtils.d.ts +3 -0
  103. package/dist/esm/utils/chipsCalculationsUtils.d.ts.map +1 -0
  104. package/dist/esm/utils/chipsCalculationsUtils.js +12 -0
  105. package/dist/esm/utils/cloning.d.ts +6 -0
  106. package/dist/esm/utils/cloning.d.ts.map +1 -0
  107. package/dist/esm/utils/cloning.js +17 -0
  108. package/dist/esm/utils/enumTypes.d.ts +2 -0
  109. package/dist/esm/utils/enumTypes.d.ts.map +1 -0
  110. package/dist/esm/utils/enumTypes.js +2 -0
  111. package/dist/esm/utils/ethersTypes.d.ts +14 -0
  112. package/dist/esm/utils/ethersTypes.d.ts.map +1 -0
  113. package/dist/esm/utils/ethersTypes.js +51 -0
  114. package/dist/esm/utils/hashes.d.ts +2 -0
  115. package/dist/esm/utils/hashes.d.ts.map +1 -0
  116. package/dist/esm/utils/hashes.js +8 -0
  117. package/dist/esm/utils/leverageCalculationsUtils.d.ts +6 -0
  118. package/dist/esm/utils/leverageCalculationsUtils.d.ts.map +1 -0
  119. package/dist/esm/utils/leverageCalculationsUtils.js +25 -0
  120. package/dist/esm/utils/lynxScalesUtils.d.ts +5 -0
  121. package/dist/esm/utils/lynxScalesUtils.d.ts.map +1 -0
  122. package/dist/esm/utils/lynxScalesUtils.js +20 -0
  123. package/dist/esm/utils/types.d.ts +7 -0
  124. package/dist/esm/utils/types.d.ts.map +1 -0
  125. package/dist/esm/utils/types.js +3 -0
  126. package/dist/types/addresses/lensAddresses.d.ts +27 -0
  127. package/dist/types/addresses/lensAddresses.d.ts.map +1 -0
  128. package/dist/types/common/constants/contractEnums.d.ts +148 -0
  129. package/dist/types/common/constants/contractEnums.d.ts.map +1 -0
  130. package/dist/types/common/constants/feeIds.d.ts +13 -0
  131. package/dist/types/common/constants/feeIds.d.ts.map +1 -0
  132. package/dist/types/common/constants/generalConstants.d.ts +2 -0
  133. package/dist/types/common/constants/generalConstants.d.ts.map +1 -0
  134. package/dist/types/common/constants/groupIds.d.ts +15 -0
  135. package/dist/types/common/constants/groupIds.d.ts.map +1 -0
  136. package/dist/types/common/constants/pairIds.d.ts +40 -0
  137. package/dist/types/common/constants/pairIds.d.ts.map +1 -0
  138. package/dist/types/common/constants/scales.d.ts +16 -0
  139. package/dist/types/common/constants/scales.d.ts.map +1 -0
  140. package/dist/types/common/contractsIntegration/deployedContractsConnector.d.ts +7 -0
  141. package/dist/types/common/contractsIntegration/deployedContractsConnector.d.ts.map +1 -0
  142. package/dist/types/common/priceFeeds/pyth/pythFeedConstants.d.ts +5 -0
  143. package/dist/types/common/priceFeeds/pyth/pythFeedConstants.d.ts.map +1 -0
  144. package/dist/types/common/priceFeeds/pyth/pythFeedFunctions.d.ts +7 -0
  145. package/dist/types/common/priceFeeds/pyth/pythFeedFunctions.d.ts.map +1 -0
  146. package/dist/types/common/typechain/common.d.ts +51 -0
  147. package/dist/types/common/typechain/common.d.ts.map +1 -0
  148. package/dist/types/common/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts +102 -0
  149. package/dist/types/common/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts.map +1 -0
  150. package/dist/types/common/typechain/contracts/Peripheral/Lens/LexLens.d.ts +740 -0
  151. package/dist/types/common/typechain/contracts/Peripheral/Lens/LexLens.d.ts.map +1 -0
  152. package/dist/types/common/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts +390 -0
  153. package/dist/types/common/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts.map +1 -0
  154. package/dist/types/common/typechain/contracts/Peripheral/Lens/TriggersAndPortalLens.d.ts +152 -0
  155. package/dist/types/common/typechain/contracts/Peripheral/Lens/TriggersAndPortalLens.d.ts.map +1 -0
  156. package/dist/types/common/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts +146 -0
  157. package/dist/types/common/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts.map +1 -0
  158. package/dist/types/common/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts +1747 -0
  159. package/dist/types/common/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts.map +1 -0
  160. package/dist/types/common/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +1042 -0
  161. package/dist/types/common/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts.map +1 -0
  162. package/dist/types/common/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts +187 -0
  163. package/dist/types/common/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts.map +1 -0
  164. package/dist/types/index.d.ts +30 -0
  165. package/dist/types/index.d.ts.map +1 -0
  166. package/dist/types/utils/addresses.d.ts +4 -0
  167. package/dist/types/utils/addresses.d.ts.map +1 -0
  168. package/dist/types/utils/bignumbers.d.ts +6 -0
  169. package/dist/types/utils/bignumbers.d.ts.map +1 -0
  170. package/dist/types/utils/chainTypes.d.ts +137 -0
  171. package/dist/types/utils/chainTypes.d.ts.map +1 -0
  172. package/dist/types/utils/chipsCalculationsUtils.d.ts +3 -0
  173. package/dist/types/utils/chipsCalculationsUtils.d.ts.map +1 -0
  174. package/dist/types/utils/cloning.d.ts +6 -0
  175. package/dist/types/utils/cloning.d.ts.map +1 -0
  176. package/dist/types/utils/enumTypes.d.ts +2 -0
  177. package/dist/types/utils/enumTypes.d.ts.map +1 -0
  178. package/dist/types/utils/ethersTypes.d.ts +14 -0
  179. package/dist/types/utils/ethersTypes.d.ts.map +1 -0
  180. package/dist/types/utils/hashes.d.ts +2 -0
  181. package/dist/types/utils/hashes.d.ts.map +1 -0
  182. package/dist/types/utils/leverageCalculationsUtils.d.ts +6 -0
  183. package/dist/types/utils/leverageCalculationsUtils.d.ts.map +1 -0
  184. package/dist/types/utils/lynxScalesUtils.d.ts +5 -0
  185. package/dist/types/utils/lynxScalesUtils.d.ts.map +1 -0
  186. package/dist/types/utils/types.d.ts +7 -0
  187. package/dist/types/utils/types.d.ts.map +1 -0
  188. package/package.json +49 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"groupIds.d.ts","sourceRoot":"","sources":["../../../../common/constants/groupIds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAGrD,MAAM,MAAM,kBAAkB,GAC1B,QAAQ,GACR,YAAY,GACZ,OAAO,GACP,WAAW,CAAC;AAEhB,MAAM,MAAM,uBAAuB,GAAG;IAEpC,IAAI,EAAE,MAAM,CAAC;IAGb,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;CAKpB,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,YAAY,CAC7D,OAAO,iBAAiB,CACzB,CAAC,CAAC;AAEH,eAAO,MAAM,yBAAyB,EAAE,MAAM,CAC5C,kBAAkB,EAClB,uBAAuB,CAkBxB,CAAC"}
@@ -0,0 +1,40 @@
1
+ import { TKeysOfConst } from "../../utils/enumTypes";
2
+ export type TPairConfigsIdentifier = {
3
+ id: number;
4
+ groupId: number;
5
+ from: string;
6
+ to: string;
7
+ };
8
+ export declare const PAIR_CONFIGS_IDS: {
9
+ readonly BTC_USD: 1;
10
+ readonly ETH_USD: 2;
11
+ readonly BNB_USD: 3;
12
+ readonly FTM_USD: 4;
13
+ readonly SOL_USD: 5;
14
+ readonly FLR_USD: 1001;
15
+ readonly S_USD: 2004;
16
+ readonly EUR_USD: 8001;
17
+ readonly GBP_USD: 8002;
18
+ readonly AUD_USD: 8003;
19
+ readonly NZD_USD: 8004;
20
+ readonly USD_JPY: 8101;
21
+ readonly USD_CHF: 8102;
22
+ readonly BTC_USD_CAT: 10001;
23
+ readonly ETH_USD_CAT: 10002;
24
+ readonly EUR_USD_CAT: 18001;
25
+ readonly GBP_USD_CAT: 18002;
26
+ readonly AUD_USD_CAT: 18003;
27
+ readonly NZD_USD_CAT: 18004;
28
+ readonly USD_JPY_CAT: 18101;
29
+ readonly USD_CHF_CAT: 18102;
30
+ };
31
+ export type TPairIds = (typeof PAIR_CONFIGS_IDS)[TKeysOfConst<typeof PAIR_CONFIGS_IDS>];
32
+ export type TPairConfigsNames = "BTC_USD" | "ETH_USD" | "BNB_USD" | "FTM_USD" | "SOL_USD" | "FLR_USD" | "S_USD" | "EUR_USD" | "GBP_USD" | "AUD_USD" | "NZD_USD" | "USD_JPY" | "USD_CHF" | "BTC_USD_CAT" | "ETH_USD_CAT" | "EUR_USD_CAT" | "GBP_USD_CAT" | "AUD_USD_CAT" | "NZD_USD_CAT" | "USD_JPY_CAT" | "USD_CHF_CAT";
33
+ export declare const PAIR_CONFIGS_IDENTIFIERS: Record<TPairConfigsNames, TPairConfigsIdentifier>;
34
+ export declare function getPairConfigsIdentifierFromPairId(pairId: TPairIds): TPairConfigsIdentifier | undefined;
35
+ export type TPairFromTo = {
36
+ from: string;
37
+ to: string;
38
+ };
39
+ export declare const PAIRS_FROM_TO: Record<TPairIds, TPairFromTo>;
40
+ //# sourceMappingURL=pairIds.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pairIds.d.ts","sourceRoot":"","sources":["../../../../common/constants/pairIds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAGrD,MAAM,MAAM,sBAAsB,GAAG;IACnC,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;CA0CnB,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,YAAY,CAC3D,OAAO,gBAAgB,CACxB,CAAC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GACzB,SAAS,GACT,SAAS,GACT,SAAS,GACT,SAAS,GACT,SAAS,GACT,SAAS,GACT,OAAO,GACP,SAAS,GACT,SAAS,GACT,SAAS,GACT,SAAS,GACT,SAAS,GACT,SAAS,GACT,aAAa,GACb,aAAa,GACb,aAAa,GACb,aAAa,GACb,aAAa,GACb,aAAa,GACb,aAAa,GACb,aAAa,CAAC;AAElB,eAAO,MAAM,wBAAwB,EAAE,MAAM,CAC3C,iBAAiB,EACjB,sBAAsB,CAoJvB,CAAC;AAwBF,wBAAgB,kCAAkC,CAChD,MAAM,EAAE,QAAQ,GACf,sBAAsB,GAAG,SAAS,CAGpC;AAED,MAAM,MAAM,WAAW,GAAG;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,MAAM,CAAA;CAAE,CAAC;AAEvD,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,QAAQ,EAAE,WAAW,CAKtB,CAAC"}
@@ -0,0 +1,16 @@
1
+ export declare const CHIP_DECIMALS = 18;
2
+ export declare const PRECISION_SCALE = 18n;
3
+ export declare const PRECISION_UNIT: bigint;
4
+ export declare const PRICES_SCALE = 8;
5
+ export declare const LEVERAGE_MULTIPLIER_SCALE = 100;
6
+ export declare const LEVERAGE_UNIT: bigint;
7
+ export declare const FRACTION_MULTIPLIER_SCALE = 100000n;
8
+ export declare const FRACTION_UNIT = 100000n;
9
+ export declare const ACCURACY_IMPROVEMENT_SCALE = 9n;
10
+ export declare const ACCURACY_IMPROVEMENT_UNIT: bigint;
11
+ export declare const LEX_TOKEN_SCALE = 18n;
12
+ export declare const LEX_TOKEN_UNIT: bigint;
13
+ export declare const LEX_TOKEN_INITIAL_EXCHANGE_RATE_UNITS = 1;
14
+ export declare const PROXY_VERSION_SCALE = 1000;
15
+ export declare const CONTRACT_VERSION_SCALE = 1000;
16
+ //# sourceMappingURL=scales.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scales.d.ts","sourceRoot":"","sources":["../../../../common/constants/scales.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,KAAK,CAAC;AAEhC,eAAO,MAAM,eAAe,MAAM,CAAC;AACnC,eAAO,MAAM,cAAc,QAAyB,CAAC;AAErD,eAAO,MAAM,YAAY,IAAI,CAAC;AAG9B,eAAO,MAAM,yBAAyB,MAAM,CAAC;AAC7C,eAAO,MAAM,aAAa,QAAoC,CAAC;AAG/D,eAAO,MAAM,yBAAyB,UAAW,CAAC;AAClD,eAAO,MAAM,aAAa,UAA4B,CAAC;AAEvD,eAAO,MAAM,0BAA0B,KAAK,CAAC;AAC7C,eAAO,MAAM,yBAAyB,QAAoC,CAAC;AAE3E,eAAO,MAAM,eAAe,MAAM,CAAC;AACnC,eAAO,MAAM,cAAc,QAAyB,CAAC;AAErD,eAAO,MAAM,qCAAqC,IAAI,CAAC;AAOvD,eAAO,MAAM,mBAAmB,OAAQ,CAAC;AACzC,eAAO,MAAM,sBAAsB,OAAQ,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { Signer, Provider } from "ethers";
2
+ import { TradingFloorLens } from "../typechain/contracts/Peripheral/Lens/TradingFloorLens";
3
+ import { LexLens } from "../typechain/contracts/Peripheral/Lens/LexLens";
4
+ export declare function connectToTradingFloorLens(provider: Provider, address: string): TradingFloorLens;
5
+ export declare function connectToLeXLensForSigner(signer: Signer, address: string): LexLens;
6
+ export declare function connectToLeXLens(provider: Provider, address: string): LexLens;
7
+ //# sourceMappingURL=deployedContractsConnector.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deployedContractsConnector.d.ts","sourceRoot":"","sources":["../../../../common/contractsIntegration/deployedContractsConnector.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAC1C,OAAO,EAAE,gBAAgB,EAAE,MAAM,yDAAyD,CAAC;AAE3F,OAAO,EAAE,OAAO,EAAE,MAAM,gDAAgD,CAAC;AAGzE,wBAAgB,yBAAyB,CACvC,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,MAAM,GACd,gBAAgB,CAElB;AAED,wBAAgB,yBAAyB,CACvC,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,MAAM,GACd,OAAO,CAET;AAED,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAE7E"}
@@ -0,0 +1,5 @@
1
+ import { TPairIds } from "../../constants/pairIds";
2
+ export declare const PYTH_PRICE_KEYS: Record<TPairIds, string>;
3
+ export declare const PYTH_PRICE_ENTRIES: [TPairIds, string][];
4
+ export declare const PYTH_PAIRS_PRICE_FEED_IDS: Record<TPairIds, string>;
5
+ //# sourceMappingURL=pythFeedConstants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pythFeedConstants.d.ts","sourceRoot":"","sources":["../../../../../common/priceFeeds/pyth/pythFeedConstants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAErE,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,QAAQ,EAAE,MAAM,CA+BpD,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,CAAC,QAAQ,EAAE,MAAM,CAAC,EAKjD,CAAC;AAGH,eAAO,MAAM,yBAAyB,EAAE,MAAM,CAAC,QAAQ,EAAE,MAAM,CAwC9D,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { TPairIds } from "../../constants/pairIds";
2
+ /**
3
+ * Get the Pyth feed id for a pair
4
+ * @param pairId The pair id
5
+ */
6
+ export declare function getPythFeedIdForPair(pairId: TPairIds): string;
7
+ //# sourceMappingURL=pythFeedFunctions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pythFeedFunctions.d.ts","sourceRoot":"","sources":["../../../../../common/priceFeeds/pyth/pythFeedFunctions.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAEnD;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,QAAQ,GAAG,MAAM,CAE7D"}
@@ -0,0 +1,51 @@
1
+ import type { FunctionFragment, Typed, EventFragment, ContractTransaction, ContractTransactionResponse, DeferredTopicFilter, EventLog, TransactionRequest, LogDescription } from "ethers";
2
+ export interface TypedDeferredTopicFilter<_TCEvent extends TypedContractEvent> extends DeferredTopicFilter {
3
+ }
4
+ export interface TypedContractEvent<InputTuple extends Array<any> = any, OutputTuple extends Array<any> = any, OutputObject = any> {
5
+ (...args: Partial<InputTuple>): TypedDeferredTopicFilter<TypedContractEvent<InputTuple, OutputTuple, OutputObject>>;
6
+ name: string;
7
+ fragment: EventFragment;
8
+ getFragment(...args: Partial<InputTuple>): EventFragment;
9
+ }
10
+ type __TypechainAOutputTuple<T> = T extends TypedContractEvent<infer _U, infer W> ? W : never;
11
+ type __TypechainOutputObject<T> = T extends TypedContractEvent<infer _U, infer _W, infer V> ? V : never;
12
+ export interface TypedEventLog<TCEvent extends TypedContractEvent> extends Omit<EventLog, "args"> {
13
+ args: __TypechainAOutputTuple<TCEvent> & __TypechainOutputObject<TCEvent>;
14
+ }
15
+ export interface TypedLogDescription<TCEvent extends TypedContractEvent> extends Omit<LogDescription, "args"> {
16
+ args: __TypechainAOutputTuple<TCEvent> & __TypechainOutputObject<TCEvent>;
17
+ }
18
+ export type TypedListener<TCEvent extends TypedContractEvent> = (...listenerArg: [
19
+ ...__TypechainAOutputTuple<TCEvent>,
20
+ TypedEventLog<TCEvent>,
21
+ ...undefined[]
22
+ ]) => void;
23
+ export type MinEthersFactory<C, ARGS> = {
24
+ deploy(...a: ARGS[]): Promise<C>;
25
+ };
26
+ export type GetContractTypeFromFactory<F> = F extends MinEthersFactory<infer C, any> ? C : never;
27
+ export type GetARGsTypeFromFactory<F> = F extends MinEthersFactory<any, any> ? Parameters<F["deploy"]> : never;
28
+ export type StateMutability = "nonpayable" | "payable" | "view";
29
+ export type BaseOverrides = Omit<TransactionRequest, "to" | "data">;
30
+ export type NonPayableOverrides = Omit<BaseOverrides, "value" | "blockTag" | "enableCcipRead">;
31
+ export type PayableOverrides = Omit<BaseOverrides, "blockTag" | "enableCcipRead">;
32
+ export type ViewOverrides = Omit<TransactionRequest, "to" | "data">;
33
+ export type Overrides<S extends StateMutability> = S extends "nonpayable" ? NonPayableOverrides : S extends "payable" ? PayableOverrides : ViewOverrides;
34
+ export type PostfixOverrides<A extends Array<any>, S extends StateMutability> = A | [...A, Overrides<S>];
35
+ export type ContractMethodArgs<A extends Array<any>, S extends StateMutability> = PostfixOverrides<{
36
+ [I in keyof A]-?: A[I] | Typed;
37
+ }, S>;
38
+ export type DefaultReturnType<R> = R extends Array<any> ? R[0] : R;
39
+ export interface TypedContractMethod<A extends Array<any> = Array<any>, R = any, S extends StateMutability = "payable"> {
40
+ (...args: ContractMethodArgs<A, S>): S extends "view" ? Promise<DefaultReturnType<R>> : Promise<ContractTransactionResponse>;
41
+ name: string;
42
+ fragment: FunctionFragment;
43
+ getFragment(...args: ContractMethodArgs<A, S>): FunctionFragment;
44
+ populateTransaction(...args: ContractMethodArgs<A, S>): Promise<ContractTransaction>;
45
+ staticCall(...args: ContractMethodArgs<A, "view">): Promise<DefaultReturnType<R>>;
46
+ send(...args: ContractMethodArgs<A, S>): Promise<ContractTransactionResponse>;
47
+ estimateGas(...args: ContractMethodArgs<A, S>): Promise<bigint>;
48
+ staticCallResult(...args: ContractMethodArgs<A, "view">): Promise<R>;
49
+ }
50
+ export {};
51
+ //# sourceMappingURL=common.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../common/typechain/common.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,102 @@
1
+ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
2
+ import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../common";
3
+ export type AccountBasedIntentsVerifierRequestBuildingInfoStruct = {
4
+ verifier: AddressLike;
5
+ account: AddressLike;
6
+ actionType: BigNumberish;
7
+ currentNonce: BigNumberish;
8
+ };
9
+ export type AccountBasedIntentsVerifierRequestBuildingInfoStructOutput = [
10
+ verifier: string,
11
+ account: string,
12
+ actionType: bigint,
13
+ currentNonce: bigint
14
+ ] & {
15
+ verifier: string;
16
+ account: string;
17
+ actionType: bigint;
18
+ currentNonce: bigint;
19
+ };
20
+ export type HashBasedIntentsVerifierRequestBuildingInfoStruct = {
21
+ verifier: AddressLike;
22
+ hash: BytesLike;
23
+ actionType: BigNumberish;
24
+ currentNonce: BigNumberish;
25
+ };
26
+ export type HashBasedIntentsVerifierRequestBuildingInfoStructOutput = [
27
+ verifier: string,
28
+ hash: string,
29
+ actionType: bigint,
30
+ currentNonce: bigint
31
+ ] & {
32
+ verifier: string;
33
+ hash: string;
34
+ actionType: bigint;
35
+ currentNonce: bigint;
36
+ };
37
+ export interface IntentsVerifierLensInterface extends Interface {
38
+ getFunction(nameOrSignature: "getRequestBuildingInfoForChipsIntentsVerifier" | "getRequestBuildingInfoForLiquidityIntentsVerifier" | "getRequestBuildingInfoForTradeIntentsVerifier" | "registry"): FunctionFragment;
39
+ encodeFunctionData(functionFragment: "getRequestBuildingInfoForChipsIntentsVerifier", values: [AddressLike, BigNumberish]): string;
40
+ encodeFunctionData(functionFragment: "getRequestBuildingInfoForLiquidityIntentsVerifier", values: [AddressLike, BigNumberish]): string;
41
+ encodeFunctionData(functionFragment: "getRequestBuildingInfoForTradeIntentsVerifier", values: [BytesLike, BigNumberish]): string;
42
+ encodeFunctionData(functionFragment: "registry", values?: undefined): string;
43
+ decodeFunctionResult(functionFragment: "getRequestBuildingInfoForChipsIntentsVerifier", data: BytesLike): Result;
44
+ decodeFunctionResult(functionFragment: "getRequestBuildingInfoForLiquidityIntentsVerifier", data: BytesLike): Result;
45
+ decodeFunctionResult(functionFragment: "getRequestBuildingInfoForTradeIntentsVerifier", data: BytesLike): Result;
46
+ decodeFunctionResult(functionFragment: "registry", data: BytesLike): Result;
47
+ }
48
+ export interface IntentsVerifierLens extends BaseContract {
49
+ connect(runner?: ContractRunner | null): IntentsVerifierLens;
50
+ waitForDeployment(): Promise<this>;
51
+ interface: IntentsVerifierLensInterface;
52
+ queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
53
+ queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
54
+ on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
55
+ on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
56
+ once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
57
+ once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
58
+ listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
59
+ listeners(eventName?: string): Promise<Array<Listener>>;
60
+ removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
61
+ getRequestBuildingInfoForChipsIntentsVerifier: TypedContractMethod<[
62
+ _account: AddressLike,
63
+ _actionType: BigNumberish
64
+ ], [
65
+ AccountBasedIntentsVerifierRequestBuildingInfoStructOutput
66
+ ], "view">;
67
+ getRequestBuildingInfoForLiquidityIntentsVerifier: TypedContractMethod<[
68
+ _account: AddressLike,
69
+ _actionType: BigNumberish
70
+ ], [
71
+ AccountBasedIntentsVerifierRequestBuildingInfoStructOutput
72
+ ], "view">;
73
+ getRequestBuildingInfoForTradeIntentsVerifier: TypedContractMethod<[
74
+ _positionId: BytesLike,
75
+ _actionType: BigNumberish
76
+ ], [
77
+ HashBasedIntentsVerifierRequestBuildingInfoStructOutput
78
+ ], "view">;
79
+ registry: TypedContractMethod<[], [string], "view">;
80
+ getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
81
+ getFunction(nameOrSignature: "getRequestBuildingInfoForChipsIntentsVerifier"): TypedContractMethod<[
82
+ _account: AddressLike,
83
+ _actionType: BigNumberish
84
+ ], [
85
+ AccountBasedIntentsVerifierRequestBuildingInfoStructOutput
86
+ ], "view">;
87
+ getFunction(nameOrSignature: "getRequestBuildingInfoForLiquidityIntentsVerifier"): TypedContractMethod<[
88
+ _account: AddressLike,
89
+ _actionType: BigNumberish
90
+ ], [
91
+ AccountBasedIntentsVerifierRequestBuildingInfoStructOutput
92
+ ], "view">;
93
+ getFunction(nameOrSignature: "getRequestBuildingInfoForTradeIntentsVerifier"): TypedContractMethod<[
94
+ _positionId: BytesLike,
95
+ _actionType: BigNumberish
96
+ ], [
97
+ HashBasedIntentsVerifierRequestBuildingInfoStructOutput
98
+ ], "view">;
99
+ getFunction(nameOrSignature: "registry"): TypedContractMethod<[], [string], "view">;
100
+ filters: {};
101
+ }
102
+ //# sourceMappingURL=IntentsVerifierLens.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IntentsVerifierLens.d.ts","sourceRoot":"","sources":["../../../../../../../common/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.ts"],"names":[],"mappings":"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"}