lynx-client 0.0.1-beta.9 → 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 +1 -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.map +1 -1
- package/dist/esm/lib/constants/contractEnums.js +1 -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.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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RegistryV1.d.ts","sourceRoot":"","sources":["../../../../../../../lib/typechain/contracts/Lynx/Registry/RegistryV1.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,571 @@
|
|
|
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 TradingFloorStructsV1 {
|
|
4
|
+
type PositionRequestIdentifiersStruct = {
|
|
5
|
+
trader: AddressLike;
|
|
6
|
+
pairId: BigNumberish;
|
|
7
|
+
settlementAsset: AddressLike;
|
|
8
|
+
positionIndex: BigNumberish;
|
|
9
|
+
};
|
|
10
|
+
type PositionRequestIdentifiersStructOutput = [
|
|
11
|
+
trader: string,
|
|
12
|
+
pairId: bigint,
|
|
13
|
+
settlementAsset: string,
|
|
14
|
+
positionIndex: bigint
|
|
15
|
+
] & {
|
|
16
|
+
trader: string;
|
|
17
|
+
pairId: bigint;
|
|
18
|
+
settlementAsset: string;
|
|
19
|
+
positionIndex: bigint;
|
|
20
|
+
};
|
|
21
|
+
type PositionRequestParamsStruct = {
|
|
22
|
+
long: boolean;
|
|
23
|
+
collateral: BigNumberish;
|
|
24
|
+
leverage: BigNumberish;
|
|
25
|
+
minPrice: BigNumberish;
|
|
26
|
+
maxPrice: BigNumberish;
|
|
27
|
+
tp: BigNumberish;
|
|
28
|
+
sl: BigNumberish;
|
|
29
|
+
tpByFraction: BigNumberish;
|
|
30
|
+
slByFraction: BigNumberish;
|
|
31
|
+
};
|
|
32
|
+
type PositionRequestParamsStructOutput = [
|
|
33
|
+
long: boolean,
|
|
34
|
+
collateral: bigint,
|
|
35
|
+
leverage: bigint,
|
|
36
|
+
minPrice: bigint,
|
|
37
|
+
maxPrice: bigint,
|
|
38
|
+
tp: bigint,
|
|
39
|
+
sl: bigint,
|
|
40
|
+
tpByFraction: bigint,
|
|
41
|
+
slByFraction: bigint
|
|
42
|
+
] & {
|
|
43
|
+
long: boolean;
|
|
44
|
+
collateral: bigint;
|
|
45
|
+
leverage: bigint;
|
|
46
|
+
minPrice: bigint;
|
|
47
|
+
maxPrice: bigint;
|
|
48
|
+
tp: bigint;
|
|
49
|
+
sl: bigint;
|
|
50
|
+
tpByFraction: bigint;
|
|
51
|
+
slByFraction: bigint;
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
export interface TradersPortalV1Interface extends Interface {
|
|
55
|
+
getFunction(nameOrSignature: "ACCURACY_IMPROVEMENT_SCALE" | "CONTRACT_NAME" | "CONTRACT_VERSION" | "FRACTION_SCALE" | "LEVERAGE_SCALE" | "NATIVE_UNDERLYING_ADDRESS" | "PRECISION" | "_acceptAdmin" | "_msgSender" | "_setPendingAdmin" | "actionFees" | "admin" | "collectNativeFees" | "directAction_cancelPendingPosition_limit" | "directAction_timeout_closeMarket" | "directAction_timeout_openMarket" | "directAction_timeout_updateTradeField" | "directAction_updatePendingPosition_limit" | "getContractName" | "getContractVersion" | "getOrderBook" | "getTradeIntentsVerifier" | "isDone" | "isLimitingMarketClosePriceRange" | "isPaused" | "limitOrdersTimelock" | "marketOrdersTimeout" | "minLiveTimeForMarketClose" | "pendingAdmin" | "registry" | "setLimitOrdersTimelock" | "setMarketOrdersTimeout" | "setMinLiveTimeForMarketClose" | "setNativeFeeForAction" | "toggleDone" | "toggleLimitCloseOrdersRange" | "togglePause" | "traderRequest_marketClosePosition" | "traderRequest_openNewPosition" | "traderRequest_updatePositionDoubleField" | "traderRequest_updatePositionSingleField" | "tradingFloor"): FunctionFragment;
|
|
56
|
+
getEvent(nameOrSignatureOrTopic: "ActionFeeSet" | "DoneToggled" | "IsLimitingMarketClosePriceRangeToggled" | "LiquidityProvided" | "NewAdmin" | "NewPendingAdmin" | "NumberUpdated" | "PausedToggled" | "PendingMarketCloseOrderTimeoutCancelled" | "PendingMarketOpenOrderTimeoutCancelled" | "PendingOpenLimitPositionCancelled" | "PositionRequested"): EventFragment;
|
|
57
|
+
encodeFunctionData(functionFragment: "ACCURACY_IMPROVEMENT_SCALE", values?: undefined): string;
|
|
58
|
+
encodeFunctionData(functionFragment: "CONTRACT_NAME", values?: undefined): string;
|
|
59
|
+
encodeFunctionData(functionFragment: "CONTRACT_VERSION", values?: undefined): string;
|
|
60
|
+
encodeFunctionData(functionFragment: "FRACTION_SCALE", values?: undefined): string;
|
|
61
|
+
encodeFunctionData(functionFragment: "LEVERAGE_SCALE", values?: undefined): string;
|
|
62
|
+
encodeFunctionData(functionFragment: "NATIVE_UNDERLYING_ADDRESS", values?: undefined): string;
|
|
63
|
+
encodeFunctionData(functionFragment: "PRECISION", values?: undefined): string;
|
|
64
|
+
encodeFunctionData(functionFragment: "_acceptAdmin", values?: undefined): string;
|
|
65
|
+
encodeFunctionData(functionFragment: "_msgSender", values?: undefined): string;
|
|
66
|
+
encodeFunctionData(functionFragment: "_setPendingAdmin", values: [AddressLike]): string;
|
|
67
|
+
encodeFunctionData(functionFragment: "actionFees", values: [BigNumberish]): string;
|
|
68
|
+
encodeFunctionData(functionFragment: "admin", values?: undefined): string;
|
|
69
|
+
encodeFunctionData(functionFragment: "collectNativeFees", values: [AddressLike]): string;
|
|
70
|
+
encodeFunctionData(functionFragment: "directAction_cancelPendingPosition_limit", values: [BytesLike]): string;
|
|
71
|
+
encodeFunctionData(functionFragment: "directAction_timeout_closeMarket", values: [BytesLike]): string;
|
|
72
|
+
encodeFunctionData(functionFragment: "directAction_timeout_openMarket", values: [BytesLike]): string;
|
|
73
|
+
encodeFunctionData(functionFragment: "directAction_timeout_updateTradeField", values: [BytesLike]): string;
|
|
74
|
+
encodeFunctionData(functionFragment: "directAction_updatePendingPosition_limit", values: [BytesLike, BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string;
|
|
75
|
+
encodeFunctionData(functionFragment: "getContractName", values?: undefined): string;
|
|
76
|
+
encodeFunctionData(functionFragment: "getContractVersion", values?: undefined): string;
|
|
77
|
+
encodeFunctionData(functionFragment: "getOrderBook", values?: undefined): string;
|
|
78
|
+
encodeFunctionData(functionFragment: "getTradeIntentsVerifier", values?: undefined): string;
|
|
79
|
+
encodeFunctionData(functionFragment: "isDone", values?: undefined): string;
|
|
80
|
+
encodeFunctionData(functionFragment: "isLimitingMarketClosePriceRange", values?: undefined): string;
|
|
81
|
+
encodeFunctionData(functionFragment: "isPaused", values?: undefined): string;
|
|
82
|
+
encodeFunctionData(functionFragment: "limitOrdersTimelock", values?: undefined): string;
|
|
83
|
+
encodeFunctionData(functionFragment: "marketOrdersTimeout", values?: undefined): string;
|
|
84
|
+
encodeFunctionData(functionFragment: "minLiveTimeForMarketClose", values?: undefined): string;
|
|
85
|
+
encodeFunctionData(functionFragment: "pendingAdmin", values?: undefined): string;
|
|
86
|
+
encodeFunctionData(functionFragment: "registry", values?: undefined): string;
|
|
87
|
+
encodeFunctionData(functionFragment: "setLimitOrdersTimelock", values: [BigNumberish]): string;
|
|
88
|
+
encodeFunctionData(functionFragment: "setMarketOrdersTimeout", values: [BigNumberish]): string;
|
|
89
|
+
encodeFunctionData(functionFragment: "setMinLiveTimeForMarketClose", values: [BigNumberish]): string;
|
|
90
|
+
encodeFunctionData(functionFragment: "setNativeFeeForAction", values: [BigNumberish, BigNumberish]): string;
|
|
91
|
+
encodeFunctionData(functionFragment: "toggleDone", values?: undefined): string;
|
|
92
|
+
encodeFunctionData(functionFragment: "toggleLimitCloseOrdersRange", values?: undefined): string;
|
|
93
|
+
encodeFunctionData(functionFragment: "togglePause", values?: undefined): string;
|
|
94
|
+
encodeFunctionData(functionFragment: "traderRequest_marketClosePosition", values: [BytesLike, BigNumberish, BigNumberish]): string;
|
|
95
|
+
encodeFunctionData(functionFragment: "traderRequest_openNewPosition", values: [
|
|
96
|
+
TradingFloorStructsV1.PositionRequestIdentifiersStruct,
|
|
97
|
+
TradingFloorStructsV1.PositionRequestParamsStruct,
|
|
98
|
+
BigNumberish,
|
|
99
|
+
BytesLike,
|
|
100
|
+
BytesLike,
|
|
101
|
+
boolean
|
|
102
|
+
]): string;
|
|
103
|
+
encodeFunctionData(functionFragment: "traderRequest_updatePositionDoubleField", values: [BytesLike, BigNumberish, BigNumberish, BigNumberish]): string;
|
|
104
|
+
encodeFunctionData(functionFragment: "traderRequest_updatePositionSingleField", values: [BytesLike, BigNumberish, BigNumberish]): string;
|
|
105
|
+
encodeFunctionData(functionFragment: "tradingFloor", values?: undefined): string;
|
|
106
|
+
decodeFunctionResult(functionFragment: "ACCURACY_IMPROVEMENT_SCALE", data: BytesLike): Result;
|
|
107
|
+
decodeFunctionResult(functionFragment: "CONTRACT_NAME", data: BytesLike): Result;
|
|
108
|
+
decodeFunctionResult(functionFragment: "CONTRACT_VERSION", data: BytesLike): Result;
|
|
109
|
+
decodeFunctionResult(functionFragment: "FRACTION_SCALE", data: BytesLike): Result;
|
|
110
|
+
decodeFunctionResult(functionFragment: "LEVERAGE_SCALE", data: BytesLike): Result;
|
|
111
|
+
decodeFunctionResult(functionFragment: "NATIVE_UNDERLYING_ADDRESS", data: BytesLike): Result;
|
|
112
|
+
decodeFunctionResult(functionFragment: "PRECISION", data: BytesLike): Result;
|
|
113
|
+
decodeFunctionResult(functionFragment: "_acceptAdmin", data: BytesLike): Result;
|
|
114
|
+
decodeFunctionResult(functionFragment: "_msgSender", data: BytesLike): Result;
|
|
115
|
+
decodeFunctionResult(functionFragment: "_setPendingAdmin", data: BytesLike): Result;
|
|
116
|
+
decodeFunctionResult(functionFragment: "actionFees", data: BytesLike): Result;
|
|
117
|
+
decodeFunctionResult(functionFragment: "admin", data: BytesLike): Result;
|
|
118
|
+
decodeFunctionResult(functionFragment: "collectNativeFees", data: BytesLike): Result;
|
|
119
|
+
decodeFunctionResult(functionFragment: "directAction_cancelPendingPosition_limit", data: BytesLike): Result;
|
|
120
|
+
decodeFunctionResult(functionFragment: "directAction_timeout_closeMarket", data: BytesLike): Result;
|
|
121
|
+
decodeFunctionResult(functionFragment: "directAction_timeout_openMarket", data: BytesLike): Result;
|
|
122
|
+
decodeFunctionResult(functionFragment: "directAction_timeout_updateTradeField", data: BytesLike): Result;
|
|
123
|
+
decodeFunctionResult(functionFragment: "directAction_updatePendingPosition_limit", data: BytesLike): Result;
|
|
124
|
+
decodeFunctionResult(functionFragment: "getContractName", data: BytesLike): Result;
|
|
125
|
+
decodeFunctionResult(functionFragment: "getContractVersion", data: BytesLike): Result;
|
|
126
|
+
decodeFunctionResult(functionFragment: "getOrderBook", data: BytesLike): Result;
|
|
127
|
+
decodeFunctionResult(functionFragment: "getTradeIntentsVerifier", data: BytesLike): Result;
|
|
128
|
+
decodeFunctionResult(functionFragment: "isDone", data: BytesLike): Result;
|
|
129
|
+
decodeFunctionResult(functionFragment: "isLimitingMarketClosePriceRange", data: BytesLike): Result;
|
|
130
|
+
decodeFunctionResult(functionFragment: "isPaused", data: BytesLike): Result;
|
|
131
|
+
decodeFunctionResult(functionFragment: "limitOrdersTimelock", data: BytesLike): Result;
|
|
132
|
+
decodeFunctionResult(functionFragment: "marketOrdersTimeout", data: BytesLike): Result;
|
|
133
|
+
decodeFunctionResult(functionFragment: "minLiveTimeForMarketClose", data: BytesLike): Result;
|
|
134
|
+
decodeFunctionResult(functionFragment: "pendingAdmin", data: BytesLike): Result;
|
|
135
|
+
decodeFunctionResult(functionFragment: "registry", data: BytesLike): Result;
|
|
136
|
+
decodeFunctionResult(functionFragment: "setLimitOrdersTimelock", data: BytesLike): Result;
|
|
137
|
+
decodeFunctionResult(functionFragment: "setMarketOrdersTimeout", data: BytesLike): Result;
|
|
138
|
+
decodeFunctionResult(functionFragment: "setMinLiveTimeForMarketClose", data: BytesLike): Result;
|
|
139
|
+
decodeFunctionResult(functionFragment: "setNativeFeeForAction", data: BytesLike): Result;
|
|
140
|
+
decodeFunctionResult(functionFragment: "toggleDone", data: BytesLike): Result;
|
|
141
|
+
decodeFunctionResult(functionFragment: "toggleLimitCloseOrdersRange", data: BytesLike): Result;
|
|
142
|
+
decodeFunctionResult(functionFragment: "togglePause", data: BytesLike): Result;
|
|
143
|
+
decodeFunctionResult(functionFragment: "traderRequest_marketClosePosition", data: BytesLike): Result;
|
|
144
|
+
decodeFunctionResult(functionFragment: "traderRequest_openNewPosition", data: BytesLike): Result;
|
|
145
|
+
decodeFunctionResult(functionFragment: "traderRequest_updatePositionDoubleField", data: BytesLike): Result;
|
|
146
|
+
decodeFunctionResult(functionFragment: "traderRequest_updatePositionSingleField", data: BytesLike): Result;
|
|
147
|
+
decodeFunctionResult(functionFragment: "tradingFloor", data: BytesLike): Result;
|
|
148
|
+
}
|
|
149
|
+
export declare namespace ActionFeeSetEvent {
|
|
150
|
+
type InputTuple = [action: BigNumberish, requiredFee: BigNumberish];
|
|
151
|
+
type OutputTuple = [action: bigint, requiredFee: bigint];
|
|
152
|
+
interface OutputObject {
|
|
153
|
+
action: bigint;
|
|
154
|
+
requiredFee: bigint;
|
|
155
|
+
}
|
|
156
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
157
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
158
|
+
type Log = TypedEventLog<Event>;
|
|
159
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
160
|
+
}
|
|
161
|
+
export declare namespace DoneToggledEvent {
|
|
162
|
+
type InputTuple = [done: boolean];
|
|
163
|
+
type OutputTuple = [done: boolean];
|
|
164
|
+
interface OutputObject {
|
|
165
|
+
done: boolean;
|
|
166
|
+
}
|
|
167
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
168
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
169
|
+
type Log = TypedEventLog<Event>;
|
|
170
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
171
|
+
}
|
|
172
|
+
export declare namespace IsLimitingMarketClosePriceRangeToggledEvent {
|
|
173
|
+
type InputTuple = [done: boolean];
|
|
174
|
+
type OutputTuple = [done: boolean];
|
|
175
|
+
interface OutputObject {
|
|
176
|
+
done: boolean;
|
|
177
|
+
}
|
|
178
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
179
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
180
|
+
type Log = TypedEventLog<Event>;
|
|
181
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
182
|
+
}
|
|
183
|
+
export declare namespace LiquidityProvidedEvent {
|
|
184
|
+
type InputTuple = [
|
|
185
|
+
domain: BytesLike,
|
|
186
|
+
referralCode: BytesLike,
|
|
187
|
+
user: AddressLike,
|
|
188
|
+
amountUnderlying: BigNumberish,
|
|
189
|
+
processingEpoch: BigNumberish
|
|
190
|
+
];
|
|
191
|
+
type OutputTuple = [
|
|
192
|
+
domain: string,
|
|
193
|
+
referralCode: string,
|
|
194
|
+
user: string,
|
|
195
|
+
amountUnderlying: bigint,
|
|
196
|
+
processingEpoch: bigint
|
|
197
|
+
];
|
|
198
|
+
interface OutputObject {
|
|
199
|
+
domain: string;
|
|
200
|
+
referralCode: string;
|
|
201
|
+
user: string;
|
|
202
|
+
amountUnderlying: bigint;
|
|
203
|
+
processingEpoch: bigint;
|
|
204
|
+
}
|
|
205
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
206
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
207
|
+
type Log = TypedEventLog<Event>;
|
|
208
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
209
|
+
}
|
|
210
|
+
export declare namespace NewAdminEvent {
|
|
211
|
+
type InputTuple = [oldAdmin: AddressLike, newAdmin: AddressLike];
|
|
212
|
+
type OutputTuple = [oldAdmin: string, newAdmin: string];
|
|
213
|
+
interface OutputObject {
|
|
214
|
+
oldAdmin: string;
|
|
215
|
+
newAdmin: string;
|
|
216
|
+
}
|
|
217
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
218
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
219
|
+
type Log = TypedEventLog<Event>;
|
|
220
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
221
|
+
}
|
|
222
|
+
export declare namespace NewPendingAdminEvent {
|
|
223
|
+
type InputTuple = [
|
|
224
|
+
oldPendingAdmin: AddressLike,
|
|
225
|
+
newPendingAdmin: AddressLike
|
|
226
|
+
];
|
|
227
|
+
type OutputTuple = [oldPendingAdmin: string, newPendingAdmin: string];
|
|
228
|
+
interface OutputObject {
|
|
229
|
+
oldPendingAdmin: string;
|
|
230
|
+
newPendingAdmin: string;
|
|
231
|
+
}
|
|
232
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
233
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
234
|
+
type Log = TypedEventLog<Event>;
|
|
235
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
236
|
+
}
|
|
237
|
+
export declare namespace NumberUpdatedEvent {
|
|
238
|
+
type InputTuple = [name: string, value: BigNumberish];
|
|
239
|
+
type OutputTuple = [name: string, value: bigint];
|
|
240
|
+
interface OutputObject {
|
|
241
|
+
name: string;
|
|
242
|
+
value: bigint;
|
|
243
|
+
}
|
|
244
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
245
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
246
|
+
type Log = TypedEventLog<Event>;
|
|
247
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
248
|
+
}
|
|
249
|
+
export declare namespace PausedToggledEvent {
|
|
250
|
+
type InputTuple = [paused: boolean];
|
|
251
|
+
type OutputTuple = [paused: boolean];
|
|
252
|
+
interface OutputObject {
|
|
253
|
+
paused: boolean;
|
|
254
|
+
}
|
|
255
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
256
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
257
|
+
type Log = TypedEventLog<Event>;
|
|
258
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
259
|
+
}
|
|
260
|
+
export declare namespace PendingMarketCloseOrderTimeoutCancelledEvent {
|
|
261
|
+
type InputTuple = [positionId: BytesLike, caller: AddressLike];
|
|
262
|
+
type OutputTuple = [positionId: string, caller: string];
|
|
263
|
+
interface OutputObject {
|
|
264
|
+
positionId: string;
|
|
265
|
+
caller: string;
|
|
266
|
+
}
|
|
267
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
268
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
269
|
+
type Log = TypedEventLog<Event>;
|
|
270
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
271
|
+
}
|
|
272
|
+
export declare namespace PendingMarketOpenOrderTimeoutCancelledEvent {
|
|
273
|
+
type InputTuple = [positionId: BytesLike, caller: AddressLike];
|
|
274
|
+
type OutputTuple = [positionId: string, caller: string];
|
|
275
|
+
interface OutputObject {
|
|
276
|
+
positionId: string;
|
|
277
|
+
caller: string;
|
|
278
|
+
}
|
|
279
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
280
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
281
|
+
type Log = TypedEventLog<Event>;
|
|
282
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
283
|
+
}
|
|
284
|
+
export declare namespace PendingOpenLimitPositionCancelledEvent {
|
|
285
|
+
type InputTuple = [positionId: BytesLike];
|
|
286
|
+
type OutputTuple = [positionId: string];
|
|
287
|
+
interface OutputObject {
|
|
288
|
+
positionId: string;
|
|
289
|
+
}
|
|
290
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
291
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
292
|
+
type Log = TypedEventLog<Event>;
|
|
293
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
294
|
+
}
|
|
295
|
+
export declare namespace PositionRequestedEvent {
|
|
296
|
+
type InputTuple = [
|
|
297
|
+
domain: BytesLike,
|
|
298
|
+
referralCode: BytesLike,
|
|
299
|
+
positionId: BytesLike
|
|
300
|
+
];
|
|
301
|
+
type OutputTuple = [
|
|
302
|
+
domain: string,
|
|
303
|
+
referralCode: string,
|
|
304
|
+
positionId: string
|
|
305
|
+
];
|
|
306
|
+
interface OutputObject {
|
|
307
|
+
domain: string;
|
|
308
|
+
referralCode: string;
|
|
309
|
+
positionId: string;
|
|
310
|
+
}
|
|
311
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
312
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
313
|
+
type Log = TypedEventLog<Event>;
|
|
314
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
315
|
+
}
|
|
316
|
+
export interface TradersPortalV1 extends BaseContract {
|
|
317
|
+
connect(runner?: ContractRunner | null): TradersPortalV1;
|
|
318
|
+
waitForDeployment(): Promise<this>;
|
|
319
|
+
interface: TradersPortalV1Interface;
|
|
320
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
321
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
322
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
323
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
324
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
325
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
326
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
327
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
328
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
329
|
+
ACCURACY_IMPROVEMENT_SCALE: TypedContractMethod<[], [bigint], "view">;
|
|
330
|
+
CONTRACT_NAME: TypedContractMethod<[], [string], "view">;
|
|
331
|
+
CONTRACT_VERSION: TypedContractMethod<[], [string], "view">;
|
|
332
|
+
FRACTION_SCALE: TypedContractMethod<[], [bigint], "view">;
|
|
333
|
+
LEVERAGE_SCALE: TypedContractMethod<[], [bigint], "view">;
|
|
334
|
+
NATIVE_UNDERLYING_ADDRESS: TypedContractMethod<[], [string], "view">;
|
|
335
|
+
PRECISION: TypedContractMethod<[], [bigint], "view">;
|
|
336
|
+
_acceptAdmin: TypedContractMethod<[], [void], "nonpayable">;
|
|
337
|
+
_msgSender: TypedContractMethod<[], [string], "view">;
|
|
338
|
+
_setPendingAdmin: TypedContractMethod<[
|
|
339
|
+
newPendingAdmin: AddressLike
|
|
340
|
+
], [
|
|
341
|
+
void
|
|
342
|
+
], "nonpayable">;
|
|
343
|
+
actionFees: TypedContractMethod<[arg0: BigNumberish], [bigint], "view">;
|
|
344
|
+
admin: TypedContractMethod<[], [string], "view">;
|
|
345
|
+
collectNativeFees: TypedContractMethod<[
|
|
346
|
+
_to: AddressLike
|
|
347
|
+
], [
|
|
348
|
+
void
|
|
349
|
+
], "nonpayable">;
|
|
350
|
+
directAction_cancelPendingPosition_limit: TypedContractMethod<[
|
|
351
|
+
_positionId: BytesLike
|
|
352
|
+
], [
|
|
353
|
+
void
|
|
354
|
+
], "nonpayable">;
|
|
355
|
+
directAction_timeout_closeMarket: TypedContractMethod<[
|
|
356
|
+
_positionId: BytesLike
|
|
357
|
+
], [
|
|
358
|
+
void
|
|
359
|
+
], "nonpayable">;
|
|
360
|
+
directAction_timeout_openMarket: TypedContractMethod<[
|
|
361
|
+
_positionId: BytesLike
|
|
362
|
+
], [
|
|
363
|
+
void
|
|
364
|
+
], "nonpayable">;
|
|
365
|
+
directAction_timeout_updateTradeField: TypedContractMethod<[
|
|
366
|
+
_positionId: BytesLike
|
|
367
|
+
], [
|
|
368
|
+
void
|
|
369
|
+
], "nonpayable">;
|
|
370
|
+
directAction_updatePendingPosition_limit: TypedContractMethod<[
|
|
371
|
+
positionId: BytesLike,
|
|
372
|
+
minPrice: BigNumberish,
|
|
373
|
+
maxPrice: BigNumberish,
|
|
374
|
+
tp: BigNumberish,
|
|
375
|
+
sl: BigNumberish
|
|
376
|
+
], [
|
|
377
|
+
void
|
|
378
|
+
], "nonpayable">;
|
|
379
|
+
getContractName: TypedContractMethod<[], [string], "view">;
|
|
380
|
+
getContractVersion: TypedContractMethod<[], [string], "view">;
|
|
381
|
+
getOrderBook: TypedContractMethod<[], [string], "view">;
|
|
382
|
+
getTradeIntentsVerifier: TypedContractMethod<[], [string], "view">;
|
|
383
|
+
isDone: TypedContractMethod<[], [boolean], "view">;
|
|
384
|
+
isLimitingMarketClosePriceRange: TypedContractMethod<[], [boolean], "view">;
|
|
385
|
+
isPaused: TypedContractMethod<[], [boolean], "view">;
|
|
386
|
+
limitOrdersTimelock: TypedContractMethod<[], [bigint], "view">;
|
|
387
|
+
marketOrdersTimeout: TypedContractMethod<[], [bigint], "view">;
|
|
388
|
+
minLiveTimeForMarketClose: TypedContractMethod<[], [bigint], "view">;
|
|
389
|
+
pendingAdmin: TypedContractMethod<[], [string], "view">;
|
|
390
|
+
registry: TypedContractMethod<[], [string], "view">;
|
|
391
|
+
setLimitOrdersTimelock: TypedContractMethod<[
|
|
392
|
+
value: BigNumberish
|
|
393
|
+
], [
|
|
394
|
+
void
|
|
395
|
+
], "nonpayable">;
|
|
396
|
+
setMarketOrdersTimeout: TypedContractMethod<[
|
|
397
|
+
value: BigNumberish
|
|
398
|
+
], [
|
|
399
|
+
void
|
|
400
|
+
], "nonpayable">;
|
|
401
|
+
setMinLiveTimeForMarketClose: TypedContractMethod<[
|
|
402
|
+
value: BigNumberish
|
|
403
|
+
], [
|
|
404
|
+
void
|
|
405
|
+
], "nonpayable">;
|
|
406
|
+
setNativeFeeForAction: TypedContractMethod<[
|
|
407
|
+
action: BigNumberish,
|
|
408
|
+
requiredFee: BigNumberish
|
|
409
|
+
], [
|
|
410
|
+
void
|
|
411
|
+
], "nonpayable">;
|
|
412
|
+
toggleDone: TypedContractMethod<[], [void], "nonpayable">;
|
|
413
|
+
toggleLimitCloseOrdersRange: TypedContractMethod<[], [void], "nonpayable">;
|
|
414
|
+
togglePause: TypedContractMethod<[], [void], "nonpayable">;
|
|
415
|
+
traderRequest_marketClosePosition: TypedContractMethod<[
|
|
416
|
+
_positionId: BytesLike,
|
|
417
|
+
_minPrice: BigNumberish,
|
|
418
|
+
_maxPrice: BigNumberish
|
|
419
|
+
], [
|
|
420
|
+
void
|
|
421
|
+
], "payable">;
|
|
422
|
+
traderRequest_openNewPosition: TypedContractMethod<[
|
|
423
|
+
positionRequestIdentifiers: TradingFloorStructsV1.PositionRequestIdentifiersStruct,
|
|
424
|
+
positionRequestParams: TradingFloorStructsV1.PositionRequestParamsStruct,
|
|
425
|
+
orderType: BigNumberish,
|
|
426
|
+
domain: BytesLike,
|
|
427
|
+
referralCode: BytesLike,
|
|
428
|
+
runCapTests: boolean
|
|
429
|
+
], [
|
|
430
|
+
string
|
|
431
|
+
], "payable">;
|
|
432
|
+
traderRequest_updatePositionDoubleField: TypedContractMethod<[
|
|
433
|
+
_positionId: BytesLike,
|
|
434
|
+
orderType: BigNumberish,
|
|
435
|
+
fieldValueA: BigNumberish,
|
|
436
|
+
fieldValueB: BigNumberish
|
|
437
|
+
], [
|
|
438
|
+
void
|
|
439
|
+
], "payable">;
|
|
440
|
+
traderRequest_updatePositionSingleField: TypedContractMethod<[
|
|
441
|
+
_positionId: BytesLike,
|
|
442
|
+
orderType: BigNumberish,
|
|
443
|
+
fieldValue: BigNumberish
|
|
444
|
+
], [
|
|
445
|
+
void
|
|
446
|
+
], "payable">;
|
|
447
|
+
tradingFloor: TypedContractMethod<[], [string], "view">;
|
|
448
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
449
|
+
getFunction(nameOrSignature: "ACCURACY_IMPROVEMENT_SCALE"): TypedContractMethod<[], [bigint], "view">;
|
|
450
|
+
getFunction(nameOrSignature: "CONTRACT_NAME"): TypedContractMethod<[], [string], "view">;
|
|
451
|
+
getFunction(nameOrSignature: "CONTRACT_VERSION"): TypedContractMethod<[], [string], "view">;
|
|
452
|
+
getFunction(nameOrSignature: "FRACTION_SCALE"): TypedContractMethod<[], [bigint], "view">;
|
|
453
|
+
getFunction(nameOrSignature: "LEVERAGE_SCALE"): TypedContractMethod<[], [bigint], "view">;
|
|
454
|
+
getFunction(nameOrSignature: "NATIVE_UNDERLYING_ADDRESS"): TypedContractMethod<[], [string], "view">;
|
|
455
|
+
getFunction(nameOrSignature: "PRECISION"): TypedContractMethod<[], [bigint], "view">;
|
|
456
|
+
getFunction(nameOrSignature: "_acceptAdmin"): TypedContractMethod<[], [void], "nonpayable">;
|
|
457
|
+
getFunction(nameOrSignature: "_msgSender"): TypedContractMethod<[], [string], "view">;
|
|
458
|
+
getFunction(nameOrSignature: "_setPendingAdmin"): TypedContractMethod<[newPendingAdmin: AddressLike], [void], "nonpayable">;
|
|
459
|
+
getFunction(nameOrSignature: "actionFees"): TypedContractMethod<[arg0: BigNumberish], [bigint], "view">;
|
|
460
|
+
getFunction(nameOrSignature: "admin"): TypedContractMethod<[], [string], "view">;
|
|
461
|
+
getFunction(nameOrSignature: "collectNativeFees"): TypedContractMethod<[_to: AddressLike], [void], "nonpayable">;
|
|
462
|
+
getFunction(nameOrSignature: "directAction_cancelPendingPosition_limit"): TypedContractMethod<[_positionId: BytesLike], [void], "nonpayable">;
|
|
463
|
+
getFunction(nameOrSignature: "directAction_timeout_closeMarket"): TypedContractMethod<[_positionId: BytesLike], [void], "nonpayable">;
|
|
464
|
+
getFunction(nameOrSignature: "directAction_timeout_openMarket"): TypedContractMethod<[_positionId: BytesLike], [void], "nonpayable">;
|
|
465
|
+
getFunction(nameOrSignature: "directAction_timeout_updateTradeField"): TypedContractMethod<[_positionId: BytesLike], [void], "nonpayable">;
|
|
466
|
+
getFunction(nameOrSignature: "directAction_updatePendingPosition_limit"): TypedContractMethod<[
|
|
467
|
+
positionId: BytesLike,
|
|
468
|
+
minPrice: BigNumberish,
|
|
469
|
+
maxPrice: BigNumberish,
|
|
470
|
+
tp: BigNumberish,
|
|
471
|
+
sl: BigNumberish
|
|
472
|
+
], [
|
|
473
|
+
void
|
|
474
|
+
], "nonpayable">;
|
|
475
|
+
getFunction(nameOrSignature: "getContractName"): TypedContractMethod<[], [string], "view">;
|
|
476
|
+
getFunction(nameOrSignature: "getContractVersion"): TypedContractMethod<[], [string], "view">;
|
|
477
|
+
getFunction(nameOrSignature: "getOrderBook"): TypedContractMethod<[], [string], "view">;
|
|
478
|
+
getFunction(nameOrSignature: "getTradeIntentsVerifier"): TypedContractMethod<[], [string], "view">;
|
|
479
|
+
getFunction(nameOrSignature: "isDone"): TypedContractMethod<[], [boolean], "view">;
|
|
480
|
+
getFunction(nameOrSignature: "isLimitingMarketClosePriceRange"): TypedContractMethod<[], [boolean], "view">;
|
|
481
|
+
getFunction(nameOrSignature: "isPaused"): TypedContractMethod<[], [boolean], "view">;
|
|
482
|
+
getFunction(nameOrSignature: "limitOrdersTimelock"): TypedContractMethod<[], [bigint], "view">;
|
|
483
|
+
getFunction(nameOrSignature: "marketOrdersTimeout"): TypedContractMethod<[], [bigint], "view">;
|
|
484
|
+
getFunction(nameOrSignature: "minLiveTimeForMarketClose"): TypedContractMethod<[], [bigint], "view">;
|
|
485
|
+
getFunction(nameOrSignature: "pendingAdmin"): TypedContractMethod<[], [string], "view">;
|
|
486
|
+
getFunction(nameOrSignature: "registry"): TypedContractMethod<[], [string], "view">;
|
|
487
|
+
getFunction(nameOrSignature: "setLimitOrdersTimelock"): TypedContractMethod<[value: BigNumberish], [void], "nonpayable">;
|
|
488
|
+
getFunction(nameOrSignature: "setMarketOrdersTimeout"): TypedContractMethod<[value: BigNumberish], [void], "nonpayable">;
|
|
489
|
+
getFunction(nameOrSignature: "setMinLiveTimeForMarketClose"): TypedContractMethod<[value: BigNumberish], [void], "nonpayable">;
|
|
490
|
+
getFunction(nameOrSignature: "setNativeFeeForAction"): TypedContractMethod<[
|
|
491
|
+
action: BigNumberish,
|
|
492
|
+
requiredFee: BigNumberish
|
|
493
|
+
], [
|
|
494
|
+
void
|
|
495
|
+
], "nonpayable">;
|
|
496
|
+
getFunction(nameOrSignature: "toggleDone"): TypedContractMethod<[], [void], "nonpayable">;
|
|
497
|
+
getFunction(nameOrSignature: "toggleLimitCloseOrdersRange"): TypedContractMethod<[], [void], "nonpayable">;
|
|
498
|
+
getFunction(nameOrSignature: "togglePause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
499
|
+
getFunction(nameOrSignature: "traderRequest_marketClosePosition"): TypedContractMethod<[
|
|
500
|
+
_positionId: BytesLike,
|
|
501
|
+
_minPrice: BigNumberish,
|
|
502
|
+
_maxPrice: BigNumberish
|
|
503
|
+
], [
|
|
504
|
+
void
|
|
505
|
+
], "payable">;
|
|
506
|
+
getFunction(nameOrSignature: "traderRequest_openNewPosition"): TypedContractMethod<[
|
|
507
|
+
positionRequestIdentifiers: TradingFloorStructsV1.PositionRequestIdentifiersStruct,
|
|
508
|
+
positionRequestParams: TradingFloorStructsV1.PositionRequestParamsStruct,
|
|
509
|
+
orderType: BigNumberish,
|
|
510
|
+
domain: BytesLike,
|
|
511
|
+
referralCode: BytesLike,
|
|
512
|
+
runCapTests: boolean
|
|
513
|
+
], [
|
|
514
|
+
string
|
|
515
|
+
], "payable">;
|
|
516
|
+
getFunction(nameOrSignature: "traderRequest_updatePositionDoubleField"): TypedContractMethod<[
|
|
517
|
+
_positionId: BytesLike,
|
|
518
|
+
orderType: BigNumberish,
|
|
519
|
+
fieldValueA: BigNumberish,
|
|
520
|
+
fieldValueB: BigNumberish
|
|
521
|
+
], [
|
|
522
|
+
void
|
|
523
|
+
], "payable">;
|
|
524
|
+
getFunction(nameOrSignature: "traderRequest_updatePositionSingleField"): TypedContractMethod<[
|
|
525
|
+
_positionId: BytesLike,
|
|
526
|
+
orderType: BigNumberish,
|
|
527
|
+
fieldValue: BigNumberish
|
|
528
|
+
], [
|
|
529
|
+
void
|
|
530
|
+
], "payable">;
|
|
531
|
+
getFunction(nameOrSignature: "tradingFloor"): TypedContractMethod<[], [string], "view">;
|
|
532
|
+
getEvent(key: "ActionFeeSet"): TypedContractEvent<ActionFeeSetEvent.InputTuple, ActionFeeSetEvent.OutputTuple, ActionFeeSetEvent.OutputObject>;
|
|
533
|
+
getEvent(key: "DoneToggled"): TypedContractEvent<DoneToggledEvent.InputTuple, DoneToggledEvent.OutputTuple, DoneToggledEvent.OutputObject>;
|
|
534
|
+
getEvent(key: "IsLimitingMarketClosePriceRangeToggled"): TypedContractEvent<IsLimitingMarketClosePriceRangeToggledEvent.InputTuple, IsLimitingMarketClosePriceRangeToggledEvent.OutputTuple, IsLimitingMarketClosePriceRangeToggledEvent.OutputObject>;
|
|
535
|
+
getEvent(key: "LiquidityProvided"): TypedContractEvent<LiquidityProvidedEvent.InputTuple, LiquidityProvidedEvent.OutputTuple, LiquidityProvidedEvent.OutputObject>;
|
|
536
|
+
getEvent(key: "NewAdmin"): TypedContractEvent<NewAdminEvent.InputTuple, NewAdminEvent.OutputTuple, NewAdminEvent.OutputObject>;
|
|
537
|
+
getEvent(key: "NewPendingAdmin"): TypedContractEvent<NewPendingAdminEvent.InputTuple, NewPendingAdminEvent.OutputTuple, NewPendingAdminEvent.OutputObject>;
|
|
538
|
+
getEvent(key: "NumberUpdated"): TypedContractEvent<NumberUpdatedEvent.InputTuple, NumberUpdatedEvent.OutputTuple, NumberUpdatedEvent.OutputObject>;
|
|
539
|
+
getEvent(key: "PausedToggled"): TypedContractEvent<PausedToggledEvent.InputTuple, PausedToggledEvent.OutputTuple, PausedToggledEvent.OutputObject>;
|
|
540
|
+
getEvent(key: "PendingMarketCloseOrderTimeoutCancelled"): TypedContractEvent<PendingMarketCloseOrderTimeoutCancelledEvent.InputTuple, PendingMarketCloseOrderTimeoutCancelledEvent.OutputTuple, PendingMarketCloseOrderTimeoutCancelledEvent.OutputObject>;
|
|
541
|
+
getEvent(key: "PendingMarketOpenOrderTimeoutCancelled"): TypedContractEvent<PendingMarketOpenOrderTimeoutCancelledEvent.InputTuple, PendingMarketOpenOrderTimeoutCancelledEvent.OutputTuple, PendingMarketOpenOrderTimeoutCancelledEvent.OutputObject>;
|
|
542
|
+
getEvent(key: "PendingOpenLimitPositionCancelled"): TypedContractEvent<PendingOpenLimitPositionCancelledEvent.InputTuple, PendingOpenLimitPositionCancelledEvent.OutputTuple, PendingOpenLimitPositionCancelledEvent.OutputObject>;
|
|
543
|
+
getEvent(key: "PositionRequested"): TypedContractEvent<PositionRequestedEvent.InputTuple, PositionRequestedEvent.OutputTuple, PositionRequestedEvent.OutputObject>;
|
|
544
|
+
filters: {
|
|
545
|
+
"ActionFeeSet(uint8,uint256)": TypedContractEvent<ActionFeeSetEvent.InputTuple, ActionFeeSetEvent.OutputTuple, ActionFeeSetEvent.OutputObject>;
|
|
546
|
+
ActionFeeSet: TypedContractEvent<ActionFeeSetEvent.InputTuple, ActionFeeSetEvent.OutputTuple, ActionFeeSetEvent.OutputObject>;
|
|
547
|
+
"DoneToggled(bool)": TypedContractEvent<DoneToggledEvent.InputTuple, DoneToggledEvent.OutputTuple, DoneToggledEvent.OutputObject>;
|
|
548
|
+
DoneToggled: TypedContractEvent<DoneToggledEvent.InputTuple, DoneToggledEvent.OutputTuple, DoneToggledEvent.OutputObject>;
|
|
549
|
+
"IsLimitingMarketClosePriceRangeToggled(bool)": TypedContractEvent<IsLimitingMarketClosePriceRangeToggledEvent.InputTuple, IsLimitingMarketClosePriceRangeToggledEvent.OutputTuple, IsLimitingMarketClosePriceRangeToggledEvent.OutputObject>;
|
|
550
|
+
IsLimitingMarketClosePriceRangeToggled: TypedContractEvent<IsLimitingMarketClosePriceRangeToggledEvent.InputTuple, IsLimitingMarketClosePriceRangeToggledEvent.OutputTuple, IsLimitingMarketClosePriceRangeToggledEvent.OutputObject>;
|
|
551
|
+
"LiquidityProvided(bytes32,bytes32,address,uint256,uint256)": TypedContractEvent<LiquidityProvidedEvent.InputTuple, LiquidityProvidedEvent.OutputTuple, LiquidityProvidedEvent.OutputObject>;
|
|
552
|
+
LiquidityProvided: TypedContractEvent<LiquidityProvidedEvent.InputTuple, LiquidityProvidedEvent.OutputTuple, LiquidityProvidedEvent.OutputObject>;
|
|
553
|
+
"NewAdmin(address,address)": TypedContractEvent<NewAdminEvent.InputTuple, NewAdminEvent.OutputTuple, NewAdminEvent.OutputObject>;
|
|
554
|
+
NewAdmin: TypedContractEvent<NewAdminEvent.InputTuple, NewAdminEvent.OutputTuple, NewAdminEvent.OutputObject>;
|
|
555
|
+
"NewPendingAdmin(address,address)": TypedContractEvent<NewPendingAdminEvent.InputTuple, NewPendingAdminEvent.OutputTuple, NewPendingAdminEvent.OutputObject>;
|
|
556
|
+
NewPendingAdmin: TypedContractEvent<NewPendingAdminEvent.InputTuple, NewPendingAdminEvent.OutputTuple, NewPendingAdminEvent.OutputObject>;
|
|
557
|
+
"NumberUpdated(string,uint256)": TypedContractEvent<NumberUpdatedEvent.InputTuple, NumberUpdatedEvent.OutputTuple, NumberUpdatedEvent.OutputObject>;
|
|
558
|
+
NumberUpdated: TypedContractEvent<NumberUpdatedEvent.InputTuple, NumberUpdatedEvent.OutputTuple, NumberUpdatedEvent.OutputObject>;
|
|
559
|
+
"PausedToggled(bool)": TypedContractEvent<PausedToggledEvent.InputTuple, PausedToggledEvent.OutputTuple, PausedToggledEvent.OutputObject>;
|
|
560
|
+
PausedToggled: TypedContractEvent<PausedToggledEvent.InputTuple, PausedToggledEvent.OutputTuple, PausedToggledEvent.OutputObject>;
|
|
561
|
+
"PendingMarketCloseOrderTimeoutCancelled(bytes32,address)": TypedContractEvent<PendingMarketCloseOrderTimeoutCancelledEvent.InputTuple, PendingMarketCloseOrderTimeoutCancelledEvent.OutputTuple, PendingMarketCloseOrderTimeoutCancelledEvent.OutputObject>;
|
|
562
|
+
PendingMarketCloseOrderTimeoutCancelled: TypedContractEvent<PendingMarketCloseOrderTimeoutCancelledEvent.InputTuple, PendingMarketCloseOrderTimeoutCancelledEvent.OutputTuple, PendingMarketCloseOrderTimeoutCancelledEvent.OutputObject>;
|
|
563
|
+
"PendingMarketOpenOrderTimeoutCancelled(bytes32,address)": TypedContractEvent<PendingMarketOpenOrderTimeoutCancelledEvent.InputTuple, PendingMarketOpenOrderTimeoutCancelledEvent.OutputTuple, PendingMarketOpenOrderTimeoutCancelledEvent.OutputObject>;
|
|
564
|
+
PendingMarketOpenOrderTimeoutCancelled: TypedContractEvent<PendingMarketOpenOrderTimeoutCancelledEvent.InputTuple, PendingMarketOpenOrderTimeoutCancelledEvent.OutputTuple, PendingMarketOpenOrderTimeoutCancelledEvent.OutputObject>;
|
|
565
|
+
"PendingOpenLimitPositionCancelled(bytes32)": TypedContractEvent<PendingOpenLimitPositionCancelledEvent.InputTuple, PendingOpenLimitPositionCancelledEvent.OutputTuple, PendingOpenLimitPositionCancelledEvent.OutputObject>;
|
|
566
|
+
PendingOpenLimitPositionCancelled: TypedContractEvent<PendingOpenLimitPositionCancelledEvent.InputTuple, PendingOpenLimitPositionCancelledEvent.OutputTuple, PendingOpenLimitPositionCancelledEvent.OutputObject>;
|
|
567
|
+
"PositionRequested(bytes32,bytes32,bytes32)": TypedContractEvent<PositionRequestedEvent.InputTuple, PositionRequestedEvent.OutputTuple, PositionRequestedEvent.OutputObject>;
|
|
568
|
+
PositionRequested: TypedContractEvent<PositionRequestedEvent.InputTuple, PositionRequestedEvent.OutputTuple, PositionRequestedEvent.OutputObject>;
|
|
569
|
+
};
|
|
570
|
+
}
|
|
571
|
+
//# sourceMappingURL=TradersPortalV1.d.ts.map
|