lynx-client 0.0.1-beta.8 → 0.0.2
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.
- package/README.md +392 -3
- package/dist/cjs/index.js +8 -0
- package/dist/cjs/lib/chains/chainMappings.js +17 -0
- package/dist/cjs/lib/constants/contractEnums.js +2 -0
- package/dist/cjs/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.js +15 -0
- package/dist/cjs/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.js +42 -0
- package/dist/cjs/lib/contractsIntegration/IntentsVerifierLensService/index.js +18 -0
- package/dist/cjs/lib/contractsIntegration/LexLensService/ILexLensService.js +137 -0
- package/dist/cjs/lib/contractsIntegration/LexLensService/LexLensService.js +250 -0
- package/dist/cjs/lib/contractsIntegration/LexLensService/index.js +18 -0
- package/dist/cjs/lib/contractsIntegration/OrderBookService/IOrderBookService.js +2 -0
- package/dist/cjs/lib/contractsIntegration/OrderBookService/OrderBookService.js +92 -0
- package/dist/cjs/lib/contractsIntegration/TradersPortalService/ITradersPortalService.js +2 -0
- package/dist/cjs/lib/contractsIntegration/TradersPortalService/TradersPortalServiceService.js +157 -0
- package/dist/cjs/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.js +64 -0
- package/dist/cjs/lib/contractsIntegration/TradersPortalService/index.js +19 -0
- package/dist/cjs/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.js +61 -0
- package/dist/cjs/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.js +147 -0
- package/dist/cjs/lib/contractsIntegration/TradingFloorLensService/index.js +18 -0
- package/dist/cjs/lib/contractsIntegration/TradingFloorService/ITradingFloorService.js +2 -0
- package/dist/cjs/lib/contractsIntegration/TradingFloorService/TradingFloorService.js +158 -0
- package/dist/cjs/lib/contractsIntegration/TriggersAndPortalLensService/ITriggersAndPortalLensService.js +30 -0
- package/dist/cjs/lib/contractsIntegration/TriggersAndPortalLensService/TriggersAndPortalLensService.js +58 -0
- package/dist/cjs/lib/contractsIntegration/TriggersAndPortalLensService/index.js +18 -0
- package/dist/cjs/lib/contractsIntegration/TriggersService/ITriggersService.js +2 -0
- package/dist/cjs/lib/contractsIntegration/TriggersService/TriggersService.js +188 -0
- package/dist/cjs/lib/contractsIntegration/deployedContractsConnector.js +119 -8
- package/dist/cjs/lib/devex/getChainAddresses.js +65 -0
- package/dist/cjs/lib/devex/getSupportedEngineChains.js +45 -0
- package/dist/cjs/lib/devex/index.js +9 -0
- package/dist/cjs/lib/devex/types.js +2 -0
- package/dist/cjs/lib/lynxSystem/hashes.js +9 -0
- package/dist/cjs/lib/lynxSystem/lynxScalesUtils.js +8 -0
- package/dist/cjs/lib/lynxSystem/registry/registryReading.js +38 -0
- package/dist/cjs/lib/priceFeeds/pyth/pythFeedConstants.js +1 -2
- package/dist/cjs/lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/Registry/RegistryProxy.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/Registry/RegistryV1.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorProxy.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/Triggers/TriggersV1.js +2 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookProxy__factory.js +258 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.js +539 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.js +226 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.js +1108 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.js +966 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorProxy__factory.js +258 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +1774 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.js +1459 -0
- package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.js +1 -1
- package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +1 -1
- package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.js +1 -1
- package/dist/cjs/lib/utils/ethersTypes.js +29 -6
- package/dist/esm/index.d.ts +7 -0
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +8 -0
- package/dist/esm/lib/chains/chainMappings.d.ts +13 -0
- package/dist/esm/lib/chains/chainMappings.d.ts.map +1 -0
- package/dist/esm/lib/chains/chainMappings.js +17 -0
- package/dist/esm/lib/chains/chainTypes.d.ts +3 -0
- package/dist/esm/lib/chains/chainTypes.d.ts.map +1 -1
- package/dist/esm/lib/constants/contractEnums.d.ts +1 -0
- package/dist/esm/lib/constants/contractEnums.d.ts.map +1 -1
- package/dist/esm/lib/constants/contractEnums.js +2 -0
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts +20 -0
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.js +15 -0
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts +11 -0
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.js +42 -0
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/index.d.ts +3 -0
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/index.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/index.js +18 -0
- package/dist/esm/lib/contractsIntegration/LexLensService/ILexLensService.d.ts +85 -0
- package/dist/esm/lib/contractsIntegration/LexLensService/ILexLensService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/LexLensService/ILexLensService.js +137 -0
- package/dist/esm/lib/contractsIntegration/LexLensService/LexLensService.d.ts +34 -0
- package/dist/esm/lib/contractsIntegration/LexLensService/LexLensService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/LexLensService/LexLensService.js +250 -0
- package/dist/esm/lib/contractsIntegration/LexLensService/index.d.ts +3 -0
- package/dist/esm/lib/contractsIntegration/LexLensService/index.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/LexLensService/index.js +18 -0
- package/dist/esm/lib/contractsIntegration/OrderBookService/IOrderBookService.d.ts +40 -0
- package/dist/esm/lib/contractsIntegration/OrderBookService/IOrderBookService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/OrderBookService/IOrderBookService.js +2 -0
- package/dist/esm/lib/contractsIntegration/OrderBookService/OrderBookService.d.ts +12 -0
- package/dist/esm/lib/contractsIntegration/OrderBookService/OrderBookService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/OrderBookService/OrderBookService.js +92 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/ITradersPortalService.d.ts +61 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/ITradersPortalService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/ITradersPortalService.js +2 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalServiceService.d.ts +14 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalServiceService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalServiceService.js +157 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts +32 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.js +64 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/index.d.ts +4 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/index.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/index.js +19 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts +76 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.js +61 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts +16 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.js +147 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/index.d.ts +3 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/index.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/index.js +18 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts +83 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorService/ITradingFloorService.js +2 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts +80 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.js +158 -0
- package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/ITriggersAndPortalLensService.d.ts +33 -0
- package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/ITriggersAndPortalLensService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/ITriggersAndPortalLensService.js +30 -0
- package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/TriggersAndPortalLensService.d.ts +11 -0
- package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/TriggersAndPortalLensService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/TriggersAndPortalLensService.js +58 -0
- package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/index.d.ts +3 -0
- package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/index.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TriggersAndPortalLensService/index.js +18 -0
- package/dist/esm/lib/contractsIntegration/TriggersService/ITriggersService.d.ts +73 -0
- package/dist/esm/lib/contractsIntegration/TriggersService/ITriggersService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TriggersService/ITriggersService.js +2 -0
- package/dist/esm/lib/contractsIntegration/TriggersService/TriggersService.d.ts +18 -0
- package/dist/esm/lib/contractsIntegration/TriggersService/TriggersService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TriggersService/TriggersService.js +188 -0
- package/dist/esm/lib/contractsIntegration/deployedContractsConnector.d.ts +44 -5
- package/dist/esm/lib/contractsIntegration/deployedContractsConnector.d.ts.map +1 -1
- package/dist/esm/lib/contractsIntegration/deployedContractsConnector.js +119 -8
- package/dist/esm/lib/devex/getChainAddresses.d.ts +20 -0
- package/dist/esm/lib/devex/getChainAddresses.d.ts.map +1 -0
- package/dist/esm/lib/devex/getChainAddresses.js +65 -0
- package/dist/esm/lib/devex/getSupportedEngineChains.d.ts +37 -0
- package/dist/esm/lib/devex/getSupportedEngineChains.d.ts.map +1 -0
- package/dist/esm/lib/devex/getSupportedEngineChains.js +45 -0
- package/dist/esm/lib/devex/index.d.ts +5 -0
- package/dist/esm/lib/devex/index.d.ts.map +1 -0
- package/dist/esm/lib/devex/index.js +9 -0
- package/dist/esm/lib/devex/types.d.ts +20 -0
- package/dist/esm/lib/devex/types.d.ts.map +1 -0
- package/dist/esm/lib/devex/types.js +2 -0
- package/dist/esm/lib/lynxSystem/hashes.d.ts +6 -0
- package/dist/esm/lib/lynxSystem/hashes.d.ts.map +1 -1
- package/dist/esm/lib/lynxSystem/hashes.js +9 -0
- package/dist/esm/lib/lynxSystem/lynxScalesUtils.d.ts +2 -0
- package/dist/esm/lib/lynxSystem/lynxScalesUtils.d.ts.map +1 -1
- package/dist/esm/lib/lynxSystem/lynxScalesUtils.js +8 -0
- package/dist/esm/lib/lynxSystem/registry/registryReading.d.ts +9 -0
- package/dist/esm/lib/lynxSystem/registry/registryReading.d.ts.map +1 -0
- package/dist/esm/lib/lynxSystem/registry/registryReading.js +38 -0
- package/dist/esm/lib/priceFeeds/pyth/pythFeedConstants.d.ts.map +1 -1
- package/dist/esm/lib/priceFeeds/pyth/pythFeedConstants.js +1 -2
- package/dist/esm/lib/typechain/common.d.ts.map +1 -1
- package/dist/esm/lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.d.ts +151 -0
- package/dist/esm/lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.d.ts +268 -0
- package/dist/esm/lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/Registry/RegistryProxy.d.ts +143 -0
- package/dist/esm/lib/typechain/contracts/Lynx/Registry/RegistryProxy.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/Registry/RegistryProxy.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/Registry/RegistryV1.d.ts +603 -0
- package/dist/esm/lib/typechain/contracts/Lynx/Registry/RegistryV1.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/Registry/RegistryV1.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts +571 -0
- package/dist/esm/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorProxy.d.ts +151 -0
- package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorProxy.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorProxy.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts +1160 -0
- package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/Triggers/TriggersV1.d.ts +977 -0
- package/dist/esm/lib/typechain/contracts/Lynx/Triggers/TriggersV1.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/Triggers/TriggersV1.js +2 -0
- package/dist/esm/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts +1 -3
- package/dist/esm/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts.map +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookProxy__factory.d.ts +193 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookProxy__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookProxy__factory.js +258 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts +407 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.js +539 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.d.ts +169 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.js +226 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts +841 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.js +1108 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts +745 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.js +966 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorProxy__factory.d.ts +193 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorProxy__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorProxy__factory.js +258 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +1374 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +1774 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts +1135 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.js +1459 -0
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.js +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.js +1 -1
- package/dist/esm/lib/utils/ethersTypes.d.ts +2 -2
- package/dist/esm/lib/utils/ethersTypes.d.ts.map +1 -1
- package/dist/esm/lib/utils/ethersTypes.js +29 -6
- package/dist/types/index.d.ts +7 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/lib/chains/chainMappings.d.ts +13 -0
- package/dist/types/lib/chains/chainMappings.d.ts.map +1 -0
- package/dist/types/lib/chains/chainTypes.d.ts +3 -0
- package/dist/types/lib/chains/chainTypes.d.ts.map +1 -1
- package/dist/types/lib/constants/contractEnums.d.ts +1 -0
- package/dist/types/lib/constants/contractEnums.d.ts.map +1 -1
- package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts +20 -0
- package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts +11 -0
- package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/index.d.ts +3 -0
- package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/index.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/LexLensService/ILexLensService.d.ts +85 -0
- package/dist/types/lib/contractsIntegration/LexLensService/ILexLensService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/LexLensService/LexLensService.d.ts +34 -0
- package/dist/types/lib/contractsIntegration/LexLensService/LexLensService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/LexLensService/index.d.ts +3 -0
- package/dist/types/lib/contractsIntegration/LexLensService/index.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/OrderBookService/IOrderBookService.d.ts +40 -0
- package/dist/types/lib/contractsIntegration/OrderBookService/IOrderBookService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/OrderBookService/OrderBookService.d.ts +12 -0
- package/dist/types/lib/contractsIntegration/OrderBookService/OrderBookService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradersPortalService/ITradersPortalService.d.ts +61 -0
- package/dist/types/lib/contractsIntegration/TradersPortalService/ITradersPortalService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradersPortalService/TradersPortalServiceService.d.ts +14 -0
- package/dist/types/lib/contractsIntegration/TradersPortalService/TradersPortalServiceService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts +32 -0
- package/dist/types/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradersPortalService/index.d.ts +4 -0
- package/dist/types/lib/contractsIntegration/TradersPortalService/index.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts +76 -0
- package/dist/types/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts +16 -0
- package/dist/types/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradingFloorLensService/index.d.ts +3 -0
- package/dist/types/lib/contractsIntegration/TradingFloorLensService/index.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts +83 -0
- package/dist/types/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts +80 -0
- package/dist/types/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TriggersAndPortalLensService/ITriggersAndPortalLensService.d.ts +33 -0
- package/dist/types/lib/contractsIntegration/TriggersAndPortalLensService/ITriggersAndPortalLensService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TriggersAndPortalLensService/TriggersAndPortalLensService.d.ts +11 -0
- package/dist/types/lib/contractsIntegration/TriggersAndPortalLensService/TriggersAndPortalLensService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TriggersAndPortalLensService/index.d.ts +3 -0
- package/dist/types/lib/contractsIntegration/TriggersAndPortalLensService/index.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TriggersService/ITriggersService.d.ts +73 -0
- package/dist/types/lib/contractsIntegration/TriggersService/ITriggersService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TriggersService/TriggersService.d.ts +18 -0
- package/dist/types/lib/contractsIntegration/TriggersService/TriggersService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/deployedContractsConnector.d.ts +44 -5
- package/dist/types/lib/contractsIntegration/deployedContractsConnector.d.ts.map +1 -1
- package/dist/types/lib/devex/getChainAddresses.d.ts +20 -0
- package/dist/types/lib/devex/getChainAddresses.d.ts.map +1 -0
- package/dist/types/lib/devex/getSupportedEngineChains.d.ts +37 -0
- package/dist/types/lib/devex/getSupportedEngineChains.d.ts.map +1 -0
- package/dist/types/lib/devex/index.d.ts +5 -0
- package/dist/types/lib/devex/index.d.ts.map +1 -0
- package/dist/types/lib/devex/types.d.ts +20 -0
- package/dist/types/lib/devex/types.d.ts.map +1 -0
- package/dist/types/lib/lynxSystem/hashes.d.ts +6 -0
- package/dist/types/lib/lynxSystem/hashes.d.ts.map +1 -1
- package/dist/types/lib/lynxSystem/lynxScalesUtils.d.ts +2 -0
- package/dist/types/lib/lynxSystem/lynxScalesUtils.d.ts.map +1 -1
- package/dist/types/lib/lynxSystem/registry/registryReading.d.ts +9 -0
- package/dist/types/lib/lynxSystem/registry/registryReading.d.ts.map +1 -0
- package/dist/types/lib/priceFeeds/pyth/pythFeedConstants.d.ts.map +1 -1
- package/dist/types/lib/typechain/common.d.ts.map +1 -1
- package/dist/types/lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.d.ts +151 -0
- package/dist/types/lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.d.ts +268 -0
- package/dist/types/lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/Registry/RegistryProxy.d.ts +143 -0
- package/dist/types/lib/typechain/contracts/Lynx/Registry/RegistryProxy.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/Registry/RegistryV1.d.ts +603 -0
- package/dist/types/lib/typechain/contracts/Lynx/Registry/RegistryV1.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts +571 -0
- package/dist/types/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorProxy.d.ts +151 -0
- package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorProxy.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts +1160 -0
- package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/Triggers/TriggersV1.d.ts +977 -0
- package/dist/types/lib/typechain/contracts/Lynx/Triggers/TriggersV1.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts +1 -3
- package/dist/types/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts.map +1 -1
- package/dist/types/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookProxy__factory.d.ts +193 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookProxy__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts +407 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.d.ts +169 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/Registry/RegistryProxy__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts +841 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts +745 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorProxy__factory.d.ts +193 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorProxy__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +1374 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts +1135 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/LexLens__factory.d.ts +1 -1
- package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +1 -1
- package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts +1 -1
- package/dist/types/lib/utils/ethersTypes.d.ts +2 -2
- package/dist/types/lib/utils/ethersTypes.d.ts.map +1 -1
- package/package.json +7 -7
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.hashContractName = hashContractName;
|
|
4
|
+
exports.hashRoleName = hashRoleName;
|
|
4
5
|
const ethers_1 = require("ethers");
|
|
5
6
|
function hashContractName(contractName) {
|
|
6
7
|
const contractNameHash = ethers_1.ethers.solidityPackedKeccak256(["string"], [contractName]);
|
|
7
8
|
return contractNameHash;
|
|
8
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* Helper function to hash role names for use in role-based access control tests
|
|
12
|
+
* @param roleName The human-readable role name
|
|
13
|
+
* @returns The keccak256 hash of the role name as a hex string
|
|
14
|
+
*/
|
|
15
|
+
function hashRoleName(roleName) {
|
|
16
|
+
return ethers_1.ethers.keccak256(ethers_1.ethers.toUtf8Bytes(roleName));
|
|
17
|
+
}
|
|
@@ -2,4 +2,6 @@ export declare function precisionBnToFloat(precisionBn: bigint): number;
|
|
|
2
2
|
export declare function floatToPrecisionBn(value: number): bigint;
|
|
3
3
|
export declare function priceBnToFloat(pricesBn: bigint): number;
|
|
4
4
|
export declare function floatToPriceBn(priceUnits: number): bigint;
|
|
5
|
+
export declare function fractionBnToFloat(fractionBn: bigint): number;
|
|
6
|
+
export declare function floatToFractionBn(fractionUnits: number): bigint;
|
|
5
7
|
//# sourceMappingURL=lynxScalesUtils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lynxScalesUtils.d.ts","sourceRoot":"","sources":["../../../../lib/lynxSystem/lynxScalesUtils.ts"],"names":[],"mappings":"AAGA,wBAAgB,kBAAkB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,CAE9D;AAED,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAExD;AAED,wBAAgB,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAEvD;AAED,wBAAgB,cAAc,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAEzD"}
|
|
1
|
+
{"version":3,"file":"lynxScalesUtils.d.ts","sourceRoot":"","sources":["../../../../lib/lynxSystem/lynxScalesUtils.ts"],"names":[],"mappings":"AAGA,wBAAgB,kBAAkB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,CAE9D;AAED,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAExD;AAED,wBAAgB,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAEvD;AAED,wBAAgB,cAAc,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAEzD;AAED,wBAAgB,iBAAiB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAE5D;AAED,wBAAgB,iBAAiB,CAAC,aAAa,EAAE,MAAM,GAAG,MAAM,CAE/D"}
|
|
@@ -4,6 +4,8 @@ exports.precisionBnToFloat = precisionBnToFloat;
|
|
|
4
4
|
exports.floatToPrecisionBn = floatToPrecisionBn;
|
|
5
5
|
exports.priceBnToFloat = priceBnToFloat;
|
|
6
6
|
exports.floatToPriceBn = floatToPriceBn;
|
|
7
|
+
exports.fractionBnToFloat = fractionBnToFloat;
|
|
8
|
+
exports.floatToFractionBn = floatToFractionBn;
|
|
7
9
|
const scales_1 = require("../constants/scales");
|
|
8
10
|
const bignumbers_1 = require("../utils/bignumbers");
|
|
9
11
|
function precisionBnToFloat(precisionBn) {
|
|
@@ -18,3 +20,9 @@ function priceBnToFloat(pricesBn) {
|
|
|
18
20
|
function floatToPriceBn(priceUnits) {
|
|
19
21
|
return (0, bignumbers_1.floatToUnitsBn)(priceUnits, scales_1.PRICES_SCALE);
|
|
20
22
|
}
|
|
23
|
+
function fractionBnToFloat(fractionBn) {
|
|
24
|
+
return Number(fractionBn) / Number(scales_1.FRACTION_MULTIPLIER_SCALE);
|
|
25
|
+
}
|
|
26
|
+
function floatToFractionBn(fractionUnits) {
|
|
27
|
+
return BigInt(Math.round(fractionUnits * Number(scales_1.FRACTION_MULTIPLIER_SCALE)));
|
|
28
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Provider } from "ethers";
|
|
2
|
+
export declare function readTradersPortalAddress(provider: Provider, registryProxyAddress: string): Promise<string>;
|
|
3
|
+
export declare function readTriggersAddress(provider: Provider, registryProxyAddress: string): Promise<string>;
|
|
4
|
+
export declare function readChipsFactoryAddress(provider: Provider, registryProxyAddress: string): Promise<string>;
|
|
5
|
+
export declare function readLexProxiesFactoryAddress(provider: Provider, registryProxyAddress: string): Promise<string>;
|
|
6
|
+
export declare function readChipsIntentsVerifierAddress(provider: Provider, registryProxyAddress: string): Promise<string>;
|
|
7
|
+
export declare function readLiquidityIntentsVerifierAddress(provider: Provider, registryProxyAddress: string): Promise<string>;
|
|
8
|
+
export declare function readTradeIntentsVerifierAddress(provider: Provider, registryProxyAddress: string): Promise<string>;
|
|
9
|
+
//# sourceMappingURL=registryReading.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"registryReading.d.ts","sourceRoot":"","sources":["../../../../../lib/lynxSystem/registry/registryReading.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAGlC,wBAAsB,wBAAwB,CAC5C,QAAQ,EAAE,QAAQ,EAClB,oBAAoB,EAAE,MAAM,GAC3B,OAAO,CAAC,MAAM,CAAC,CAGjB;AAED,wBAAsB,mBAAmB,CACvC,QAAQ,EAAE,QAAQ,EAClB,oBAAoB,EAAE,MAAM,GAC3B,OAAO,CAAC,MAAM,CAAC,CAGjB;AAED,wBAAsB,uBAAuB,CAC3C,QAAQ,EAAE,QAAQ,EAClB,oBAAoB,EAAE,MAAM,GAC3B,OAAO,CAAC,MAAM,CAAC,CAGjB;AAED,wBAAsB,4BAA4B,CAChD,QAAQ,EAAE,QAAQ,EAClB,oBAAoB,EAAE,MAAM,GAC3B,OAAO,CAAC,MAAM,CAAC,CAGjB;AAED,wBAAsB,+BAA+B,CACnD,QAAQ,EAAE,QAAQ,EAClB,oBAAoB,EAAE,MAAM,GAC3B,OAAO,CAAC,MAAM,CAAC,CAGjB;AAED,wBAAsB,mCAAmC,CACvD,QAAQ,EAAE,QAAQ,EAClB,oBAAoB,EAAE,MAAM,GAC3B,OAAO,CAAC,MAAM,CAAC,CAGjB;AAED,wBAAsB,+BAA+B,CACnD,QAAQ,EAAE,QAAQ,EAClB,oBAAoB,EAAE,MAAM,GAC3B,OAAO,CAAC,MAAM,CAAC,CAGjB"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.readTradersPortalAddress = readTradersPortalAddress;
|
|
4
|
+
exports.readTriggersAddress = readTriggersAddress;
|
|
5
|
+
exports.readChipsFactoryAddress = readChipsFactoryAddress;
|
|
6
|
+
exports.readLexProxiesFactoryAddress = readLexProxiesFactoryAddress;
|
|
7
|
+
exports.readChipsIntentsVerifierAddress = readChipsIntentsVerifierAddress;
|
|
8
|
+
exports.readLiquidityIntentsVerifierAddress = readLiquidityIntentsVerifierAddress;
|
|
9
|
+
exports.readTradeIntentsVerifierAddress = readTradeIntentsVerifierAddress;
|
|
10
|
+
const deployedContractsConnector_1 = require("../../contractsIntegration/deployedContractsConnector");
|
|
11
|
+
async function readTradersPortalAddress(provider, registryProxyAddress) {
|
|
12
|
+
const registry = (0, deployedContractsConnector_1.connectToLatestRegistry)(provider, registryProxyAddress);
|
|
13
|
+
return await registry.tradersPortal();
|
|
14
|
+
}
|
|
15
|
+
async function readTriggersAddress(provider, registryProxyAddress) {
|
|
16
|
+
const registry = (0, deployedContractsConnector_1.connectToLatestRegistry)(provider, registryProxyAddress);
|
|
17
|
+
return await registry.triggers();
|
|
18
|
+
}
|
|
19
|
+
async function readChipsFactoryAddress(provider, registryProxyAddress) {
|
|
20
|
+
const registry = (0, deployedContractsConnector_1.connectToLatestRegistry)(provider, registryProxyAddress);
|
|
21
|
+
return await registry.chipsFactory();
|
|
22
|
+
}
|
|
23
|
+
async function readLexProxiesFactoryAddress(provider, registryProxyAddress) {
|
|
24
|
+
const registry = (0, deployedContractsConnector_1.connectToLatestRegistry)(provider, registryProxyAddress);
|
|
25
|
+
return await registry.lexProxiesFactory();
|
|
26
|
+
}
|
|
27
|
+
async function readChipsIntentsVerifierAddress(provider, registryProxyAddress) {
|
|
28
|
+
const registry = (0, deployedContractsConnector_1.connectToLatestRegistry)(provider, registryProxyAddress);
|
|
29
|
+
return await registry.chipsIntentsVerifier();
|
|
30
|
+
}
|
|
31
|
+
async function readLiquidityIntentsVerifierAddress(provider, registryProxyAddress) {
|
|
32
|
+
const registry = (0, deployedContractsConnector_1.connectToLatestRegistry)(provider, registryProxyAddress);
|
|
33
|
+
return await registry.liquidityIntentsVerifier();
|
|
34
|
+
}
|
|
35
|
+
async function readTradeIntentsVerifierAddress(provider, registryProxyAddress) {
|
|
36
|
+
const registry = (0, deployedContractsConnector_1.connectToLatestRegistry)(provider, registryProxyAddress);
|
|
37
|
+
return await registry.tradeIntentsVerifier();
|
|
38
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pythFeedConstants.d.ts","sourceRoot":"","sources":["../../../../../lib/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,
|
|
1
|
+
{"version":3,"file":"pythFeedConstants.d.ts","sourceRoot":"","sources":["../../../../../lib/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,CAuC9D,CAAC"}
|
|
@@ -43,6 +43,7 @@ exports.PYTH_PAIRS_PRICE_FEED_IDS = {
|
|
|
43
43
|
[pairIds_1.PAIR_CONFIGS_IDS.FTM_USD]: "0xf490b178d0c85683b7a0f2388b40af2e6f7c90cbe0f96b31f315f08d0e5a2d6d",
|
|
44
44
|
[pairIds_1.PAIR_CONFIGS_IDS.SOL_USD]: "0xef0d8b6fda2ceba41da15d4095d1da392a0d2f8ed0c6c7bc0f4cfac8c280b56d",
|
|
45
45
|
[pairIds_1.PAIR_CONFIGS_IDS.S_USD]: "0xf490b178d0c85683b7a0f2388b40af2e6f7c90cbe0f96b31f315f08d0e5a2d6d",
|
|
46
|
+
[pairIds_1.PAIR_CONFIGS_IDS.FLR_USD]: "0x035aa8d0a2d74e19438f2c1440edff9f3b95f915ca65f681a25ed0bad3dc228d",
|
|
46
47
|
[pairIds_1.PAIR_CONFIGS_IDS.EUR_USD]: "0xa995d00bb36a63cef7fd2c287dc105fc8f3d93779f062f09551b0af3e81ec30b",
|
|
47
48
|
[pairIds_1.PAIR_CONFIGS_IDS.GBP_USD]: "0x84c2dde9633d93d1bcad84e7dc41c9d56578b7ec52fabedc1f335d673df0a7c1",
|
|
48
49
|
[pairIds_1.PAIR_CONFIGS_IDS.AUD_USD]: "0x67a6f93030420c1c9e3fe37c1ab6b77966af82f995944a9fefce357a22854a80",
|
|
@@ -58,6 +59,4 @@ exports.PYTH_PAIRS_PRICE_FEED_IDS = {
|
|
|
58
59
|
[pairIds_1.PAIR_CONFIGS_IDS.NZD_USD_CAT]: "",
|
|
59
60
|
[pairIds_1.PAIR_CONFIGS_IDS.USD_JPY_CAT]: "",
|
|
60
61
|
[pairIds_1.PAIR_CONFIGS_IDS.USD_CHF_CAT]: "",
|
|
61
|
-
// Pairs Unsupported by pyth
|
|
62
|
-
[pairIds_1.PAIR_CONFIGS_IDS.FLR_USD]: "",
|
|
63
62
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../lib/typechain/common.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,gBAAgB,EAChB,KAAK,EACL,aAAa,EACb,mBAAmB,EACnB,2BAA2B,EAC3B,mBAAmB,EACnB,QAAQ,EACR,kBAAkB,EAClB,cAAc,EACf,MAAM,QAAQ,CAAC;AAEhB,MAAM,WAAW,wBAAwB,CAAC,QAAQ,SAAS,kBAAkB,CAC3E,SAAQ,mBAAmB;CAAG;AAEhC,MAAM,WAAW,kBAAkB,CACjC,UAAU,SAAS,KAAK,CAAC,GAAG,CAAC,GAAG,GAAG,EACnC,WAAW,SAAS,KAAK,CAAC,GAAG,CAAC,GAAG,GAAG,EACpC,YAAY,GAAG,GAAG;IAElB,
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../lib/typechain/common.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../common";
|
|
3
|
+
export interface OrderBookProxyInterface extends Interface {
|
|
4
|
+
getFunction(nameOrSignature: "CONTRACT_NAME_HASH" | "_acceptAdmin" | "_acceptImplementation" | "_setPendingAdmin" | "_setPendingImplementation" | "admin" | "implementation" | "pendingAdmin" | "pendingImplementation" | "registry"): FunctionFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "NewAdmin" | "NewImplementation" | "NewPendingAdmin" | "NewPendingImplementation"): EventFragment;
|
|
6
|
+
encodeFunctionData(functionFragment: "CONTRACT_NAME_HASH", values?: undefined): string;
|
|
7
|
+
encodeFunctionData(functionFragment: "_acceptAdmin", values?: undefined): string;
|
|
8
|
+
encodeFunctionData(functionFragment: "_acceptImplementation", values?: undefined): string;
|
|
9
|
+
encodeFunctionData(functionFragment: "_setPendingAdmin", values: [AddressLike]): string;
|
|
10
|
+
encodeFunctionData(functionFragment: "_setPendingImplementation", values: [AddressLike]): string;
|
|
11
|
+
encodeFunctionData(functionFragment: "admin", values?: undefined): string;
|
|
12
|
+
encodeFunctionData(functionFragment: "implementation", values?: undefined): string;
|
|
13
|
+
encodeFunctionData(functionFragment: "pendingAdmin", values?: undefined): string;
|
|
14
|
+
encodeFunctionData(functionFragment: "pendingImplementation", values?: undefined): string;
|
|
15
|
+
encodeFunctionData(functionFragment: "registry", values?: undefined): string;
|
|
16
|
+
decodeFunctionResult(functionFragment: "CONTRACT_NAME_HASH", data: BytesLike): Result;
|
|
17
|
+
decodeFunctionResult(functionFragment: "_acceptAdmin", data: BytesLike): Result;
|
|
18
|
+
decodeFunctionResult(functionFragment: "_acceptImplementation", data: BytesLike): Result;
|
|
19
|
+
decodeFunctionResult(functionFragment: "_setPendingAdmin", data: BytesLike): Result;
|
|
20
|
+
decodeFunctionResult(functionFragment: "_setPendingImplementation", data: BytesLike): Result;
|
|
21
|
+
decodeFunctionResult(functionFragment: "admin", data: BytesLike): Result;
|
|
22
|
+
decodeFunctionResult(functionFragment: "implementation", data: BytesLike): Result;
|
|
23
|
+
decodeFunctionResult(functionFragment: "pendingAdmin", data: BytesLike): Result;
|
|
24
|
+
decodeFunctionResult(functionFragment: "pendingImplementation", data: BytesLike): Result;
|
|
25
|
+
decodeFunctionResult(functionFragment: "registry", data: BytesLike): Result;
|
|
26
|
+
}
|
|
27
|
+
export declare namespace NewAdminEvent {
|
|
28
|
+
type InputTuple = [oldAdmin: AddressLike, newAdmin: AddressLike];
|
|
29
|
+
type OutputTuple = [oldAdmin: string, newAdmin: string];
|
|
30
|
+
interface OutputObject {
|
|
31
|
+
oldAdmin: string;
|
|
32
|
+
newAdmin: string;
|
|
33
|
+
}
|
|
34
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
35
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
36
|
+
type Log = TypedEventLog<Event>;
|
|
37
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
38
|
+
}
|
|
39
|
+
export declare namespace NewImplementationEvent {
|
|
40
|
+
type InputTuple = [
|
|
41
|
+
oldImplementation: AddressLike,
|
|
42
|
+
newImplementation: AddressLike
|
|
43
|
+
];
|
|
44
|
+
type OutputTuple = [
|
|
45
|
+
oldImplementation: string,
|
|
46
|
+
newImplementation: string
|
|
47
|
+
];
|
|
48
|
+
interface OutputObject {
|
|
49
|
+
oldImplementation: string;
|
|
50
|
+
newImplementation: string;
|
|
51
|
+
}
|
|
52
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
53
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
54
|
+
type Log = TypedEventLog<Event>;
|
|
55
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
56
|
+
}
|
|
57
|
+
export declare namespace NewPendingAdminEvent {
|
|
58
|
+
type InputTuple = [
|
|
59
|
+
oldPendingAdmin: AddressLike,
|
|
60
|
+
newPendingAdmin: AddressLike
|
|
61
|
+
];
|
|
62
|
+
type OutputTuple = [oldPendingAdmin: string, newPendingAdmin: string];
|
|
63
|
+
interface OutputObject {
|
|
64
|
+
oldPendingAdmin: string;
|
|
65
|
+
newPendingAdmin: string;
|
|
66
|
+
}
|
|
67
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
68
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
69
|
+
type Log = TypedEventLog<Event>;
|
|
70
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
71
|
+
}
|
|
72
|
+
export declare namespace NewPendingImplementationEvent {
|
|
73
|
+
type InputTuple = [
|
|
74
|
+
oldPendingImplementation: AddressLike,
|
|
75
|
+
newPendingImplementation: AddressLike
|
|
76
|
+
];
|
|
77
|
+
type OutputTuple = [
|
|
78
|
+
oldPendingImplementation: string,
|
|
79
|
+
newPendingImplementation: string
|
|
80
|
+
];
|
|
81
|
+
interface OutputObject {
|
|
82
|
+
oldPendingImplementation: string;
|
|
83
|
+
newPendingImplementation: string;
|
|
84
|
+
}
|
|
85
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
86
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
87
|
+
type Log = TypedEventLog<Event>;
|
|
88
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
89
|
+
}
|
|
90
|
+
export interface OrderBookProxy extends BaseContract {
|
|
91
|
+
connect(runner?: ContractRunner | null): OrderBookProxy;
|
|
92
|
+
waitForDeployment(): Promise<this>;
|
|
93
|
+
interface: OrderBookProxyInterface;
|
|
94
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
95
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
96
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
97
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
98
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
99
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
100
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
101
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
102
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
103
|
+
CONTRACT_NAME_HASH: TypedContractMethod<[], [string], "view">;
|
|
104
|
+
_acceptAdmin: TypedContractMethod<[], [void], "nonpayable">;
|
|
105
|
+
_acceptImplementation: TypedContractMethod<[], [bigint], "nonpayable">;
|
|
106
|
+
_setPendingAdmin: TypedContractMethod<[
|
|
107
|
+
newPendingAdmin: AddressLike
|
|
108
|
+
], [
|
|
109
|
+
void
|
|
110
|
+
], "nonpayable">;
|
|
111
|
+
_setPendingImplementation: TypedContractMethod<[
|
|
112
|
+
newPendingImplementation: AddressLike
|
|
113
|
+
], [
|
|
114
|
+
void
|
|
115
|
+
], "nonpayable">;
|
|
116
|
+
admin: TypedContractMethod<[], [string], "view">;
|
|
117
|
+
implementation: TypedContractMethod<[], [string], "view">;
|
|
118
|
+
pendingAdmin: TypedContractMethod<[], [string], "view">;
|
|
119
|
+
pendingImplementation: TypedContractMethod<[], [string], "view">;
|
|
120
|
+
registry: TypedContractMethod<[], [string], "view">;
|
|
121
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
122
|
+
getFunction(nameOrSignature: "CONTRACT_NAME_HASH"): TypedContractMethod<[], [string], "view">;
|
|
123
|
+
getFunction(nameOrSignature: "_acceptAdmin"): TypedContractMethod<[], [void], "nonpayable">;
|
|
124
|
+
getFunction(nameOrSignature: "_acceptImplementation"): TypedContractMethod<[], [bigint], "nonpayable">;
|
|
125
|
+
getFunction(nameOrSignature: "_setPendingAdmin"): TypedContractMethod<[newPendingAdmin: AddressLike], [void], "nonpayable">;
|
|
126
|
+
getFunction(nameOrSignature: "_setPendingImplementation"): TypedContractMethod<[
|
|
127
|
+
newPendingImplementation: AddressLike
|
|
128
|
+
], [
|
|
129
|
+
void
|
|
130
|
+
], "nonpayable">;
|
|
131
|
+
getFunction(nameOrSignature: "admin"): TypedContractMethod<[], [string], "view">;
|
|
132
|
+
getFunction(nameOrSignature: "implementation"): TypedContractMethod<[], [string], "view">;
|
|
133
|
+
getFunction(nameOrSignature: "pendingAdmin"): TypedContractMethod<[], [string], "view">;
|
|
134
|
+
getFunction(nameOrSignature: "pendingImplementation"): TypedContractMethod<[], [string], "view">;
|
|
135
|
+
getFunction(nameOrSignature: "registry"): TypedContractMethod<[], [string], "view">;
|
|
136
|
+
getEvent(key: "NewAdmin"): TypedContractEvent<NewAdminEvent.InputTuple, NewAdminEvent.OutputTuple, NewAdminEvent.OutputObject>;
|
|
137
|
+
getEvent(key: "NewImplementation"): TypedContractEvent<NewImplementationEvent.InputTuple, NewImplementationEvent.OutputTuple, NewImplementationEvent.OutputObject>;
|
|
138
|
+
getEvent(key: "NewPendingAdmin"): TypedContractEvent<NewPendingAdminEvent.InputTuple, NewPendingAdminEvent.OutputTuple, NewPendingAdminEvent.OutputObject>;
|
|
139
|
+
getEvent(key: "NewPendingImplementation"): TypedContractEvent<NewPendingImplementationEvent.InputTuple, NewPendingImplementationEvent.OutputTuple, NewPendingImplementationEvent.OutputObject>;
|
|
140
|
+
filters: {
|
|
141
|
+
"NewAdmin(address,address)": TypedContractEvent<NewAdminEvent.InputTuple, NewAdminEvent.OutputTuple, NewAdminEvent.OutputObject>;
|
|
142
|
+
NewAdmin: TypedContractEvent<NewAdminEvent.InputTuple, NewAdminEvent.OutputTuple, NewAdminEvent.OutputObject>;
|
|
143
|
+
"NewImplementation(address,address)": TypedContractEvent<NewImplementationEvent.InputTuple, NewImplementationEvent.OutputTuple, NewImplementationEvent.OutputObject>;
|
|
144
|
+
NewImplementation: TypedContractEvent<NewImplementationEvent.InputTuple, NewImplementationEvent.OutputTuple, NewImplementationEvent.OutputObject>;
|
|
145
|
+
"NewPendingAdmin(address,address)": TypedContractEvent<NewPendingAdminEvent.InputTuple, NewPendingAdminEvent.OutputTuple, NewPendingAdminEvent.OutputObject>;
|
|
146
|
+
NewPendingAdmin: TypedContractEvent<NewPendingAdminEvent.InputTuple, NewPendingAdminEvent.OutputTuple, NewPendingAdminEvent.OutputObject>;
|
|
147
|
+
"NewPendingImplementation(address,address)": TypedContractEvent<NewPendingImplementationEvent.InputTuple, NewPendingImplementationEvent.OutputTuple, NewPendingImplementationEvent.OutputObject>;
|
|
148
|
+
NewPendingImplementation: TypedContractEvent<NewPendingImplementationEvent.InputTuple, NewPendingImplementationEvent.OutputTuple, NewPendingImplementationEvent.OutputObject>;
|
|
149
|
+
};
|
|
150
|
+
}
|
|
151
|
+
//# sourceMappingURL=OrderBookProxy.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OrderBookProxy.d.ts","sourceRoot":"","sources":["../../../../../../../lib/typechain/contracts/Lynx/OrderBook/OrderBookProxy.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,268 @@
|
|
|
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 OrderBookStructsV1 {
|
|
4
|
+
type UpdatePositionFieldOrderStruct = {
|
|
5
|
+
positionId: BytesLike;
|
|
6
|
+
orderType: BigNumberish;
|
|
7
|
+
timestamp: BigNumberish;
|
|
8
|
+
fieldValueA: BigNumberish;
|
|
9
|
+
fieldValueB: BigNumberish;
|
|
10
|
+
};
|
|
11
|
+
type UpdatePositionFieldOrderStructOutput = [
|
|
12
|
+
positionId: string,
|
|
13
|
+
orderType: bigint,
|
|
14
|
+
timestamp: bigint,
|
|
15
|
+
fieldValueA: bigint,
|
|
16
|
+
fieldValueB: bigint
|
|
17
|
+
] & {
|
|
18
|
+
positionId: string;
|
|
19
|
+
orderType: bigint;
|
|
20
|
+
timestamp: bigint;
|
|
21
|
+
fieldValueA: bigint;
|
|
22
|
+
fieldValueB: bigint;
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
export interface OrderBookV1Interface extends Interface {
|
|
26
|
+
getFunction(nameOrSignature: "ACCURACY_IMPROVEMENT_SCALE" | "FRACTION_SCALE" | "LEVERAGE_SCALE" | "PRECISION" | "_become" | "admin" | "allPendingUpdateOrderIds" | "getAllPendingUpdateOrderIds" | "implementation" | "pendingAdmin" | "pendingImplementation" | "pendingUpdateTradeFieldOrdersById" | "readAndDeleteUpdatePositionOrder" | "registry" | "setTradingFloor" | "storeUpdatePositionDoubleFieldOrder" | "storeUpdatePositionSingleFieldOrder" | "tradingFloor" | "updateOrderIdPositionInList"): FunctionFragment;
|
|
27
|
+
getEvent(nameOrSignatureOrTopic: "NumberUpdated" | "TradingFloorSet" | "UpdateLivePositionOrderRemoved" | "UpdateLivePositionOrderSet"): EventFragment;
|
|
28
|
+
encodeFunctionData(functionFragment: "ACCURACY_IMPROVEMENT_SCALE", values?: undefined): string;
|
|
29
|
+
encodeFunctionData(functionFragment: "FRACTION_SCALE", values?: undefined): string;
|
|
30
|
+
encodeFunctionData(functionFragment: "LEVERAGE_SCALE", values?: undefined): string;
|
|
31
|
+
encodeFunctionData(functionFragment: "PRECISION", values?: undefined): string;
|
|
32
|
+
encodeFunctionData(functionFragment: "_become", values: [AddressLike]): string;
|
|
33
|
+
encodeFunctionData(functionFragment: "admin", values?: undefined): string;
|
|
34
|
+
encodeFunctionData(functionFragment: "allPendingUpdateOrderIds", values: [BigNumberish]): string;
|
|
35
|
+
encodeFunctionData(functionFragment: "getAllPendingUpdateOrderIds", values?: undefined): string;
|
|
36
|
+
encodeFunctionData(functionFragment: "implementation", values?: undefined): string;
|
|
37
|
+
encodeFunctionData(functionFragment: "pendingAdmin", values?: undefined): string;
|
|
38
|
+
encodeFunctionData(functionFragment: "pendingImplementation", values?: undefined): string;
|
|
39
|
+
encodeFunctionData(functionFragment: "pendingUpdateTradeFieldOrdersById", values: [BytesLike]): string;
|
|
40
|
+
encodeFunctionData(functionFragment: "readAndDeleteUpdatePositionOrder", values: [BytesLike]): string;
|
|
41
|
+
encodeFunctionData(functionFragment: "registry", values?: undefined): string;
|
|
42
|
+
encodeFunctionData(functionFragment: "setTradingFloor", values: [AddressLike]): string;
|
|
43
|
+
encodeFunctionData(functionFragment: "storeUpdatePositionDoubleFieldOrder", values: [BytesLike, BigNumberish, BigNumberish, BigNumberish]): string;
|
|
44
|
+
encodeFunctionData(functionFragment: "storeUpdatePositionSingleFieldOrder", values: [BytesLike, BigNumberish, BigNumberish]): string;
|
|
45
|
+
encodeFunctionData(functionFragment: "tradingFloor", values?: undefined): string;
|
|
46
|
+
encodeFunctionData(functionFragment: "updateOrderIdPositionInList", values: [BytesLike]): string;
|
|
47
|
+
decodeFunctionResult(functionFragment: "ACCURACY_IMPROVEMENT_SCALE", data: BytesLike): Result;
|
|
48
|
+
decodeFunctionResult(functionFragment: "FRACTION_SCALE", data: BytesLike): Result;
|
|
49
|
+
decodeFunctionResult(functionFragment: "LEVERAGE_SCALE", data: BytesLike): Result;
|
|
50
|
+
decodeFunctionResult(functionFragment: "PRECISION", data: BytesLike): Result;
|
|
51
|
+
decodeFunctionResult(functionFragment: "_become", data: BytesLike): Result;
|
|
52
|
+
decodeFunctionResult(functionFragment: "admin", data: BytesLike): Result;
|
|
53
|
+
decodeFunctionResult(functionFragment: "allPendingUpdateOrderIds", data: BytesLike): Result;
|
|
54
|
+
decodeFunctionResult(functionFragment: "getAllPendingUpdateOrderIds", data: BytesLike): Result;
|
|
55
|
+
decodeFunctionResult(functionFragment: "implementation", data: BytesLike): Result;
|
|
56
|
+
decodeFunctionResult(functionFragment: "pendingAdmin", data: BytesLike): Result;
|
|
57
|
+
decodeFunctionResult(functionFragment: "pendingImplementation", data: BytesLike): Result;
|
|
58
|
+
decodeFunctionResult(functionFragment: "pendingUpdateTradeFieldOrdersById", data: BytesLike): Result;
|
|
59
|
+
decodeFunctionResult(functionFragment: "readAndDeleteUpdatePositionOrder", data: BytesLike): Result;
|
|
60
|
+
decodeFunctionResult(functionFragment: "registry", data: BytesLike): Result;
|
|
61
|
+
decodeFunctionResult(functionFragment: "setTradingFloor", data: BytesLike): Result;
|
|
62
|
+
decodeFunctionResult(functionFragment: "storeUpdatePositionDoubleFieldOrder", data: BytesLike): Result;
|
|
63
|
+
decodeFunctionResult(functionFragment: "storeUpdatePositionSingleFieldOrder", data: BytesLike): Result;
|
|
64
|
+
decodeFunctionResult(functionFragment: "tradingFloor", data: BytesLike): Result;
|
|
65
|
+
decodeFunctionResult(functionFragment: "updateOrderIdPositionInList", data: BytesLike): Result;
|
|
66
|
+
}
|
|
67
|
+
export declare namespace NumberUpdatedEvent {
|
|
68
|
+
type InputTuple = [name: string, value: BigNumberish];
|
|
69
|
+
type OutputTuple = [name: string, value: bigint];
|
|
70
|
+
interface OutputObject {
|
|
71
|
+
name: string;
|
|
72
|
+
value: bigint;
|
|
73
|
+
}
|
|
74
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
75
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
76
|
+
type Log = TypedEventLog<Event>;
|
|
77
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
78
|
+
}
|
|
79
|
+
export declare namespace TradingFloorSetEvent {
|
|
80
|
+
type InputTuple = [tradingFloor: AddressLike];
|
|
81
|
+
type OutputTuple = [tradingFloor: string];
|
|
82
|
+
interface OutputObject {
|
|
83
|
+
tradingFloor: string;
|
|
84
|
+
}
|
|
85
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
86
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
87
|
+
type Log = TypedEventLog<Event>;
|
|
88
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
89
|
+
}
|
|
90
|
+
export declare namespace UpdateLivePositionOrderRemovedEvent {
|
|
91
|
+
type InputTuple = [positionId: BytesLike];
|
|
92
|
+
type OutputTuple = [positionId: string];
|
|
93
|
+
interface OutputObject {
|
|
94
|
+
positionId: string;
|
|
95
|
+
}
|
|
96
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
97
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
98
|
+
type Log = TypedEventLog<Event>;
|
|
99
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
100
|
+
}
|
|
101
|
+
export declare namespace UpdateLivePositionOrderSetEvent {
|
|
102
|
+
type InputTuple = [
|
|
103
|
+
positionId: BytesLike,
|
|
104
|
+
order: OrderBookStructsV1.UpdatePositionFieldOrderStruct
|
|
105
|
+
];
|
|
106
|
+
type OutputTuple = [
|
|
107
|
+
positionId: string,
|
|
108
|
+
order: OrderBookStructsV1.UpdatePositionFieldOrderStructOutput
|
|
109
|
+
];
|
|
110
|
+
interface OutputObject {
|
|
111
|
+
positionId: string;
|
|
112
|
+
order: OrderBookStructsV1.UpdatePositionFieldOrderStructOutput;
|
|
113
|
+
}
|
|
114
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
115
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
116
|
+
type Log = TypedEventLog<Event>;
|
|
117
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
118
|
+
}
|
|
119
|
+
export interface OrderBookV1 extends BaseContract {
|
|
120
|
+
connect(runner?: ContractRunner | null): OrderBookV1;
|
|
121
|
+
waitForDeployment(): Promise<this>;
|
|
122
|
+
interface: OrderBookV1Interface;
|
|
123
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
124
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
125
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
126
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
127
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
128
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
129
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
130
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
131
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
132
|
+
ACCURACY_IMPROVEMENT_SCALE: TypedContractMethod<[], [bigint], "view">;
|
|
133
|
+
FRACTION_SCALE: TypedContractMethod<[], [bigint], "view">;
|
|
134
|
+
LEVERAGE_SCALE: TypedContractMethod<[], [bigint], "view">;
|
|
135
|
+
PRECISION: TypedContractMethod<[], [bigint], "view">;
|
|
136
|
+
_become: TypedContractMethod<[
|
|
137
|
+
orderBookProxy: AddressLike
|
|
138
|
+
], [
|
|
139
|
+
void
|
|
140
|
+
], "nonpayable">;
|
|
141
|
+
admin: TypedContractMethod<[], [string], "view">;
|
|
142
|
+
allPendingUpdateOrderIds: TypedContractMethod<[
|
|
143
|
+
arg0: BigNumberish
|
|
144
|
+
], [
|
|
145
|
+
string
|
|
146
|
+
], "view">;
|
|
147
|
+
getAllPendingUpdateOrderIds: TypedContractMethod<[], [string[]], "view">;
|
|
148
|
+
implementation: TypedContractMethod<[], [string], "view">;
|
|
149
|
+
pendingAdmin: TypedContractMethod<[], [string], "view">;
|
|
150
|
+
pendingImplementation: TypedContractMethod<[], [string], "view">;
|
|
151
|
+
pendingUpdateTradeFieldOrdersById: TypedContractMethod<[
|
|
152
|
+
arg0: BytesLike
|
|
153
|
+
], [
|
|
154
|
+
[
|
|
155
|
+
string,
|
|
156
|
+
bigint,
|
|
157
|
+
bigint,
|
|
158
|
+
bigint,
|
|
159
|
+
bigint
|
|
160
|
+
] & {
|
|
161
|
+
positionId: string;
|
|
162
|
+
orderType: bigint;
|
|
163
|
+
timestamp: bigint;
|
|
164
|
+
fieldValueA: bigint;
|
|
165
|
+
fieldValueB: bigint;
|
|
166
|
+
}
|
|
167
|
+
], "view">;
|
|
168
|
+
readAndDeleteUpdatePositionOrder: TypedContractMethod<[
|
|
169
|
+
_positionId: BytesLike
|
|
170
|
+
], [
|
|
171
|
+
OrderBookStructsV1.UpdatePositionFieldOrderStructOutput
|
|
172
|
+
], "nonpayable">;
|
|
173
|
+
registry: TypedContractMethod<[], [string], "view">;
|
|
174
|
+
setTradingFloor: TypedContractMethod<[
|
|
175
|
+
_tradingFloor: AddressLike
|
|
176
|
+
], [
|
|
177
|
+
void
|
|
178
|
+
], "nonpayable">;
|
|
179
|
+
storeUpdatePositionDoubleFieldOrder: TypedContractMethod<[
|
|
180
|
+
_positionId: BytesLike,
|
|
181
|
+
orderType: BigNumberish,
|
|
182
|
+
fieldValueA: BigNumberish,
|
|
183
|
+
fieldValueB: BigNumberish
|
|
184
|
+
], [
|
|
185
|
+
OrderBookStructsV1.UpdatePositionFieldOrderStructOutput
|
|
186
|
+
], "nonpayable">;
|
|
187
|
+
storeUpdatePositionSingleFieldOrder: TypedContractMethod<[
|
|
188
|
+
_positionId: BytesLike,
|
|
189
|
+
orderType: BigNumberish,
|
|
190
|
+
fieldValue: BigNumberish
|
|
191
|
+
], [
|
|
192
|
+
OrderBookStructsV1.UpdatePositionFieldOrderStructOutput
|
|
193
|
+
], "nonpayable">;
|
|
194
|
+
tradingFloor: TypedContractMethod<[], [string], "view">;
|
|
195
|
+
updateOrderIdPositionInList: TypedContractMethod<[
|
|
196
|
+
arg0: BytesLike
|
|
197
|
+
], [
|
|
198
|
+
bigint
|
|
199
|
+
], "view">;
|
|
200
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
201
|
+
getFunction(nameOrSignature: "ACCURACY_IMPROVEMENT_SCALE"): TypedContractMethod<[], [bigint], "view">;
|
|
202
|
+
getFunction(nameOrSignature: "FRACTION_SCALE"): TypedContractMethod<[], [bigint], "view">;
|
|
203
|
+
getFunction(nameOrSignature: "LEVERAGE_SCALE"): TypedContractMethod<[], [bigint], "view">;
|
|
204
|
+
getFunction(nameOrSignature: "PRECISION"): TypedContractMethod<[], [bigint], "view">;
|
|
205
|
+
getFunction(nameOrSignature: "_become"): TypedContractMethod<[orderBookProxy: AddressLike], [void], "nonpayable">;
|
|
206
|
+
getFunction(nameOrSignature: "admin"): TypedContractMethod<[], [string], "view">;
|
|
207
|
+
getFunction(nameOrSignature: "allPendingUpdateOrderIds"): TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
208
|
+
getFunction(nameOrSignature: "getAllPendingUpdateOrderIds"): TypedContractMethod<[], [string[]], "view">;
|
|
209
|
+
getFunction(nameOrSignature: "implementation"): TypedContractMethod<[], [string], "view">;
|
|
210
|
+
getFunction(nameOrSignature: "pendingAdmin"): TypedContractMethod<[], [string], "view">;
|
|
211
|
+
getFunction(nameOrSignature: "pendingImplementation"): TypedContractMethod<[], [string], "view">;
|
|
212
|
+
getFunction(nameOrSignature: "pendingUpdateTradeFieldOrdersById"): TypedContractMethod<[
|
|
213
|
+
arg0: BytesLike
|
|
214
|
+
], [
|
|
215
|
+
[
|
|
216
|
+
string,
|
|
217
|
+
bigint,
|
|
218
|
+
bigint,
|
|
219
|
+
bigint,
|
|
220
|
+
bigint
|
|
221
|
+
] & {
|
|
222
|
+
positionId: string;
|
|
223
|
+
orderType: bigint;
|
|
224
|
+
timestamp: bigint;
|
|
225
|
+
fieldValueA: bigint;
|
|
226
|
+
fieldValueB: bigint;
|
|
227
|
+
}
|
|
228
|
+
], "view">;
|
|
229
|
+
getFunction(nameOrSignature: "readAndDeleteUpdatePositionOrder"): TypedContractMethod<[
|
|
230
|
+
_positionId: BytesLike
|
|
231
|
+
], [
|
|
232
|
+
OrderBookStructsV1.UpdatePositionFieldOrderStructOutput
|
|
233
|
+
], "nonpayable">;
|
|
234
|
+
getFunction(nameOrSignature: "registry"): TypedContractMethod<[], [string], "view">;
|
|
235
|
+
getFunction(nameOrSignature: "setTradingFloor"): TypedContractMethod<[_tradingFloor: AddressLike], [void], "nonpayable">;
|
|
236
|
+
getFunction(nameOrSignature: "storeUpdatePositionDoubleFieldOrder"): TypedContractMethod<[
|
|
237
|
+
_positionId: BytesLike,
|
|
238
|
+
orderType: BigNumberish,
|
|
239
|
+
fieldValueA: BigNumberish,
|
|
240
|
+
fieldValueB: BigNumberish
|
|
241
|
+
], [
|
|
242
|
+
OrderBookStructsV1.UpdatePositionFieldOrderStructOutput
|
|
243
|
+
], "nonpayable">;
|
|
244
|
+
getFunction(nameOrSignature: "storeUpdatePositionSingleFieldOrder"): TypedContractMethod<[
|
|
245
|
+
_positionId: BytesLike,
|
|
246
|
+
orderType: BigNumberish,
|
|
247
|
+
fieldValue: BigNumberish
|
|
248
|
+
], [
|
|
249
|
+
OrderBookStructsV1.UpdatePositionFieldOrderStructOutput
|
|
250
|
+
], "nonpayable">;
|
|
251
|
+
getFunction(nameOrSignature: "tradingFloor"): TypedContractMethod<[], [string], "view">;
|
|
252
|
+
getFunction(nameOrSignature: "updateOrderIdPositionInList"): TypedContractMethod<[arg0: BytesLike], [bigint], "view">;
|
|
253
|
+
getEvent(key: "NumberUpdated"): TypedContractEvent<NumberUpdatedEvent.InputTuple, NumberUpdatedEvent.OutputTuple, NumberUpdatedEvent.OutputObject>;
|
|
254
|
+
getEvent(key: "TradingFloorSet"): TypedContractEvent<TradingFloorSetEvent.InputTuple, TradingFloorSetEvent.OutputTuple, TradingFloorSetEvent.OutputObject>;
|
|
255
|
+
getEvent(key: "UpdateLivePositionOrderRemoved"): TypedContractEvent<UpdateLivePositionOrderRemovedEvent.InputTuple, UpdateLivePositionOrderRemovedEvent.OutputTuple, UpdateLivePositionOrderRemovedEvent.OutputObject>;
|
|
256
|
+
getEvent(key: "UpdateLivePositionOrderSet"): TypedContractEvent<UpdateLivePositionOrderSetEvent.InputTuple, UpdateLivePositionOrderSetEvent.OutputTuple, UpdateLivePositionOrderSetEvent.OutputObject>;
|
|
257
|
+
filters: {
|
|
258
|
+
"NumberUpdated(string,uint256)": TypedContractEvent<NumberUpdatedEvent.InputTuple, NumberUpdatedEvent.OutputTuple, NumberUpdatedEvent.OutputObject>;
|
|
259
|
+
NumberUpdated: TypedContractEvent<NumberUpdatedEvent.InputTuple, NumberUpdatedEvent.OutputTuple, NumberUpdatedEvent.OutputObject>;
|
|
260
|
+
"TradingFloorSet(address)": TypedContractEvent<TradingFloorSetEvent.InputTuple, TradingFloorSetEvent.OutputTuple, TradingFloorSetEvent.OutputObject>;
|
|
261
|
+
TradingFloorSet: TypedContractEvent<TradingFloorSetEvent.InputTuple, TradingFloorSetEvent.OutputTuple, TradingFloorSetEvent.OutputObject>;
|
|
262
|
+
"UpdateLivePositionOrderRemoved(bytes32)": TypedContractEvent<UpdateLivePositionOrderRemovedEvent.InputTuple, UpdateLivePositionOrderRemovedEvent.OutputTuple, UpdateLivePositionOrderRemovedEvent.OutputObject>;
|
|
263
|
+
UpdateLivePositionOrderRemoved: TypedContractEvent<UpdateLivePositionOrderRemovedEvent.InputTuple, UpdateLivePositionOrderRemovedEvent.OutputTuple, UpdateLivePositionOrderRemovedEvent.OutputObject>;
|
|
264
|
+
"UpdateLivePositionOrderSet(bytes32,tuple)": TypedContractEvent<UpdateLivePositionOrderSetEvent.InputTuple, UpdateLivePositionOrderSetEvent.OutputTuple, UpdateLivePositionOrderSetEvent.OutputObject>;
|
|
265
|
+
UpdateLivePositionOrderSet: TypedContractEvent<UpdateLivePositionOrderSetEvent.InputTuple, UpdateLivePositionOrderSetEvent.OutputTuple, UpdateLivePositionOrderSetEvent.OutputObject>;
|
|
266
|
+
};
|
|
267
|
+
}
|
|
268
|
+
//# sourceMappingURL=OrderBookV1.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OrderBookV1.d.ts","sourceRoot":"","sources":["../../../../../../../lib/typechain/contracts/Lynx/OrderBook/OrderBookV1.ts"],"names":[],"mappings":"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"}
|