lynx-client 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -1
- package/dist/cjs/index.js +12 -0
- package/dist/cjs/lib/addresses/lensAddresses.js +16 -16
- package/dist/cjs/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.js +91 -0
- package/dist/cjs/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.js +2 -0
- package/dist/cjs/lib/contractsIntegration/ChipsIntentsVerifierService/index.js +5 -0
- package/dist/cjs/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.js +0 -13
- package/dist/cjs/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.js +6 -26
- package/dist/cjs/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.js +2 -0
- package/dist/cjs/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.js +70 -0
- package/dist/cjs/lib/contractsIntegration/LiquidityIntentsVerifierService/index.js +5 -0
- package/dist/cjs/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.js +2 -0
- package/dist/cjs/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.js +99 -0
- package/dist/cjs/lib/contractsIntegration/TradeIntentsVerifierService/index.js +5 -0
- package/dist/cjs/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.js +0 -1
- package/dist/cjs/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.js +3 -7
- package/dist/cjs/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.js +11 -47
- package/dist/cjs/lib/contractsIntegration/TradingFloorService/TradingFloorService.js +28 -9
- package/dist/cjs/lib/contractsIntegration/TradingFloorService/index.js +5 -0
- package/dist/cjs/lib/contractsIntegration/deployedContractsConnector.js +45 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.js +2 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.js +1129 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.js +870 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.js +1561 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.js +1854 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.js +1 -1
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.js +1 -1
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.js +78 -6
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +297 -80
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.js +1 -1
- package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.js +10 -109
- 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 +51 -594
- package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.js +1 -1
- package/dist/cjs/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.js +334 -0
- package/dist/esm/index.d.ts +10 -0
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +12 -0
- package/dist/esm/lib/addresses/lensAddresses.d.ts +16 -16
- package/dist/esm/lib/addresses/lensAddresses.js +16 -16
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts +29 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.js +91 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts +24 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.js +2 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts +4 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/index.js +5 -0
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts +3 -16
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts.map +1 -1
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.js +0 -13
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts +5 -5
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts.map +1 -1
- package/dist/esm/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.js +6 -26
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts +17 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.js +2 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts +22 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.js +70 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts +4 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/index.js +5 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts +24 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.js +2 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts +29 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.js +99 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts +4 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/index.js +5 -0
- package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts +0 -1
- package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts.map +1 -1
- package/dist/esm/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.js +0 -1
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts +10 -21
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts.map +1 -1
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.js +3 -7
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts +1 -4
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts.map +1 -1
- package/dist/esm/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.js +11 -47
- package/dist/esm/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts +10 -4
- package/dist/esm/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts.map +1 -1
- package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts +10 -4
- package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts.map +1 -1
- package/dist/esm/lib/contractsIntegration/TradingFloorService/TradingFloorService.js +28 -9
- package/dist/esm/lib/contractsIntegration/TradingFloorService/index.d.ts +3 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorService/index.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradingFloorService/index.js +5 -0
- package/dist/esm/lib/contractsIntegration/deployedContractsConnector.d.ts +15 -0
- package/dist/esm/lib/contractsIntegration/deployedContractsConnector.d.ts.map +1 -1
- package/dist/esm/lib/contractsIntegration/deployedContractsConnector.js +45 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts +643 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts +508 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts +832 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.d.ts +1084 -0
- package/dist/esm/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts +42 -6
- package/dist/esm/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts.map +1 -1
- package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts +150 -59
- package/dist/esm/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts.map +1 -1
- package/dist/esm/lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts +10 -65
- package/dist/esm/lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts.map +1 -1
- package/dist/esm/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts +34 -112
- package/dist/esm/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts.map +1 -1
- package/dist/esm/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.d.ts +158 -0
- package/dist/esm/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.js +2 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts +866 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.js +1129 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts +670 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.js +870 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts +1201 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.js +1561 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts +1425 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.js +1854 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.js +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.js +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts +60 -5
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts.map +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.js +78 -6
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +226 -64
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +297 -80
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.js +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts +10 -85
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts.map +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.js +10 -109
- 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 +13 -442
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts.map +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +51 -594
- 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/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.d.ts +251 -0
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.js +334 -0
- package/dist/types/index.d.ts +10 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/lib/addresses/lensAddresses.d.ts +16 -16
- package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts +29 -0
- package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts +24 -0
- package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts +4 -0
- package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts +3 -16
- package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IIntentsVerifierLensService.d.ts.map +1 -1
- package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts +5 -5
- package/dist/types/lib/contractsIntegration/IntentsVerifierLensService/IntentsVerifierLensService.d.ts.map +1 -1
- package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts +17 -0
- package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts +22 -0
- package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts +4 -0
- package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts +24 -0
- package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts +29 -0
- package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts +4 -0
- package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts +0 -1
- package/dist/types/lib/contractsIntegration/TradersPortalService/TradersPortalUtils.d.ts.map +1 -1
- package/dist/types/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts +10 -21
- package/dist/types/lib/contractsIntegration/TradingFloorLensService/ITradingFloorLensService.d.ts.map +1 -1
- package/dist/types/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts +1 -4
- package/dist/types/lib/contractsIntegration/TradingFloorLensService/TradingFloorLensService.d.ts.map +1 -1
- package/dist/types/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts +10 -4
- package/dist/types/lib/contractsIntegration/TradingFloorService/ITradingFloorService.d.ts.map +1 -1
- package/dist/types/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts +10 -4
- package/dist/types/lib/contractsIntegration/TradingFloorService/TradingFloorService.d.ts.map +1 -1
- package/dist/types/lib/contractsIntegration/TradingFloorService/index.d.ts +3 -0
- package/dist/types/lib/contractsIntegration/TradingFloorService/index.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/deployedContractsConnector.d.ts +15 -0
- package/dist/types/lib/contractsIntegration/deployedContractsConnector.d.ts.map +1 -1
- package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts +643 -0
- package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts +508 -0
- package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts +832 -0
- package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.d.ts +1084 -0
- package/dist/types/lib/typechain/contracts/Lynx/Lex/LexPool/LexPoolV1.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts +42 -6
- package/dist/types/lib/typechain/contracts/Lynx/TradersPortal/TradersPortalV1.d.ts.map +1 -1
- package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts +150 -59
- package/dist/types/lib/typechain/contracts/Lynx/TradingFloor/TradingFloorV1.d.ts.map +1 -1
- package/dist/types/lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts +10 -65
- package/dist/types/lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.d.ts.map +1 -1
- package/dist/types/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts +34 -112
- package/dist/types/lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.d.ts.map +1 -1
- package/dist/types/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.d.ts +158 -0
- package/dist/types/lib/typechain/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts +866 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts +670 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts +1201 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts +1425 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/Lex/LexPool/LexPoolV1__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/OrderBook/OrderBookV1__factory.d.ts +1 -1
- package/dist/types/lib/typechain/factories/contracts/Lynx/Registry/RegistryV1__factory.d.ts +1 -1
- package/dist/types/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts +60 -5
- package/dist/types/lib/typechain/factories/contracts/Lynx/TradersPortal/TradersPortalV1__factory.d.ts.map +1 -1
- package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +226 -64
- package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -1
- package/dist/types/lib/typechain/factories/contracts/Lynx/Triggers/TriggersV1__factory.d.ts +1 -1
- package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts +10 -85
- package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/IntentsVerifierLens__factory.d.ts.map +1 -1
- 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 +13 -442
- package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts.map +1 -1
- package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TriggersAndPortalLens__factory.d.ts +1 -1
- package/dist/types/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.d.ts +251 -0
- package/dist/types/lib/typechain/factories/contracts/Peripheral/TokensDistribution/SinglePhaseSingleTokenDistributor/SinglePhaseSingleTokenDistributor__factory.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -1,44 +1,10 @@
|
|
|
1
|
-
import type { BaseContract,
|
|
1
|
+
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
2
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../common";
|
|
3
|
-
export type AccountBasedIntentsVerifierRequestBuildingInfoStruct = {
|
|
4
|
-
verifier: AddressLike;
|
|
5
|
-
account: AddressLike;
|
|
6
|
-
actionType: BigNumberish;
|
|
7
|
-
currentNonce: BigNumberish;
|
|
8
|
-
};
|
|
9
|
-
export type AccountBasedIntentsVerifierRequestBuildingInfoStructOutput = [
|
|
10
|
-
verifier: string,
|
|
11
|
-
account: string,
|
|
12
|
-
actionType: bigint,
|
|
13
|
-
currentNonce: bigint
|
|
14
|
-
] & {
|
|
15
|
-
verifier: string;
|
|
16
|
-
account: string;
|
|
17
|
-
actionType: bigint;
|
|
18
|
-
currentNonce: bigint;
|
|
19
|
-
};
|
|
20
|
-
export type HashBasedIntentsVerifierRequestBuildingInfoStruct = {
|
|
21
|
-
verifier: AddressLike;
|
|
22
|
-
hash: BytesLike;
|
|
23
|
-
actionType: BigNumberish;
|
|
24
|
-
currentNonce: BigNumberish;
|
|
25
|
-
};
|
|
26
|
-
export type HashBasedIntentsVerifierRequestBuildingInfoStructOutput = [
|
|
27
|
-
verifier: string,
|
|
28
|
-
hash: string,
|
|
29
|
-
actionType: bigint,
|
|
30
|
-
currentNonce: bigint
|
|
31
|
-
] & {
|
|
32
|
-
verifier: string;
|
|
33
|
-
hash: string;
|
|
34
|
-
actionType: bigint;
|
|
35
|
-
currentNonce: bigint;
|
|
36
|
-
};
|
|
37
3
|
export interface IntentsVerifierLensInterface extends Interface {
|
|
38
4
|
getFunction(nameOrSignature: "getRequestBuildingInfoForChipsIntentsVerifier" | "getRequestBuildingInfoForLiquidityIntentsVerifier" | "getRequestBuildingInfoForTradeIntentsVerifier" | "registry"): FunctionFragment;
|
|
39
|
-
encodeFunctionData(functionFragment: "getRequestBuildingInfoForChipsIntentsVerifier", values
|
|
40
|
-
encodeFunctionData(functionFragment: "getRequestBuildingInfoForLiquidityIntentsVerifier", values
|
|
41
|
-
encodeFunctionData(functionFragment: "getRequestBuildingInfoForTradeIntentsVerifier", values
|
|
5
|
+
encodeFunctionData(functionFragment: "getRequestBuildingInfoForChipsIntentsVerifier", values?: undefined): string;
|
|
6
|
+
encodeFunctionData(functionFragment: "getRequestBuildingInfoForLiquidityIntentsVerifier", values?: undefined): string;
|
|
7
|
+
encodeFunctionData(functionFragment: "getRequestBuildingInfoForTradeIntentsVerifier", values?: undefined): string;
|
|
42
8
|
encodeFunctionData(functionFragment: "registry", values?: undefined): string;
|
|
43
9
|
decodeFunctionResult(functionFragment: "getRequestBuildingInfoForChipsIntentsVerifier", data: BytesLike): Result;
|
|
44
10
|
decodeFunctionResult(functionFragment: "getRequestBuildingInfoForLiquidityIntentsVerifier", data: BytesLike): Result;
|
|
@@ -59,43 +25,22 @@ export interface IntentsVerifierLens extends BaseContract {
|
|
|
59
25
|
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
60
26
|
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
61
27
|
getRequestBuildingInfoForChipsIntentsVerifier: TypedContractMethod<[
|
|
62
|
-
_account: AddressLike,
|
|
63
|
-
_actionType: BigNumberish
|
|
64
28
|
], [
|
|
65
|
-
|
|
29
|
+
string
|
|
66
30
|
], "view">;
|
|
67
31
|
getRequestBuildingInfoForLiquidityIntentsVerifier: TypedContractMethod<[
|
|
68
|
-
_account: AddressLike,
|
|
69
|
-
_actionType: BigNumberish
|
|
70
32
|
], [
|
|
71
|
-
|
|
33
|
+
string
|
|
72
34
|
], "view">;
|
|
73
35
|
getRequestBuildingInfoForTradeIntentsVerifier: TypedContractMethod<[
|
|
74
|
-
_positionId: BytesLike,
|
|
75
|
-
_actionType: BigNumberish
|
|
76
36
|
], [
|
|
77
|
-
|
|
37
|
+
string
|
|
78
38
|
], "view">;
|
|
79
39
|
registry: TypedContractMethod<[], [string], "view">;
|
|
80
40
|
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
81
|
-
getFunction(nameOrSignature: "getRequestBuildingInfoForChipsIntentsVerifier"): TypedContractMethod<[
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
], [
|
|
85
|
-
AccountBasedIntentsVerifierRequestBuildingInfoStructOutput
|
|
86
|
-
], "view">;
|
|
87
|
-
getFunction(nameOrSignature: "getRequestBuildingInfoForLiquidityIntentsVerifier"): TypedContractMethod<[
|
|
88
|
-
_account: AddressLike,
|
|
89
|
-
_actionType: BigNumberish
|
|
90
|
-
], [
|
|
91
|
-
AccountBasedIntentsVerifierRequestBuildingInfoStructOutput
|
|
92
|
-
], "view">;
|
|
93
|
-
getFunction(nameOrSignature: "getRequestBuildingInfoForTradeIntentsVerifier"): TypedContractMethod<[
|
|
94
|
-
_positionId: BytesLike,
|
|
95
|
-
_actionType: BigNumberish
|
|
96
|
-
], [
|
|
97
|
-
HashBasedIntentsVerifierRequestBuildingInfoStructOutput
|
|
98
|
-
], "view">;
|
|
41
|
+
getFunction(nameOrSignature: "getRequestBuildingInfoForChipsIntentsVerifier"): TypedContractMethod<[], [string], "view">;
|
|
42
|
+
getFunction(nameOrSignature: "getRequestBuildingInfoForLiquidityIntentsVerifier"): TypedContractMethod<[], [string], "view">;
|
|
43
|
+
getFunction(nameOrSignature: "getRequestBuildingInfoForTradeIntentsVerifier"): TypedContractMethod<[], [string], "view">;
|
|
99
44
|
getFunction(nameOrSignature: "registry"): TypedContractMethod<[], [string], "view">;
|
|
100
45
|
filters: {};
|
|
101
46
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IntentsVerifierLens.d.ts","sourceRoot":"","sources":["../../../../../../../lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,YAAY,EACZ,
|
|
1
|
+
{"version":3,"file":"IntentsVerifierLens.d.ts","sourceRoot":"","sources":["../../../../../../../lib/typechain/contracts/Peripheral/Lens/IntentsVerifierLens.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,40 +2,34 @@ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, I
|
|
|
2
2
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../common";
|
|
3
3
|
export type TradingFloorLensTradeParamsStruct = {
|
|
4
4
|
tradingFloor: AddressLike;
|
|
5
|
-
|
|
5
|
+
maxTradesPerTrader: BigNumberish;
|
|
6
6
|
maxSlF: BigNumberish;
|
|
7
7
|
maxSanityProfitF: BigNumberish;
|
|
8
8
|
};
|
|
9
9
|
export type TradingFloorLensTradeParamsStructOutput = [
|
|
10
10
|
tradingFloor: string,
|
|
11
|
-
|
|
11
|
+
maxTradesPerTrader: bigint,
|
|
12
12
|
maxSlF: bigint,
|
|
13
13
|
maxSanityProfitF: bigint
|
|
14
14
|
] & {
|
|
15
15
|
tradingFloor: string;
|
|
16
|
-
|
|
16
|
+
maxTradesPerTrader: bigint;
|
|
17
17
|
maxSlF: bigint;
|
|
18
18
|
maxSanityProfitF: bigint;
|
|
19
19
|
};
|
|
20
20
|
export declare namespace TradingFloorLensStructs {
|
|
21
21
|
type GetAllPositionsDataForAllTradersParamsStruct = {
|
|
22
22
|
tradingFloor: AddressLike;
|
|
23
|
-
|
|
24
|
-
pairIdsStartIndex: BigNumberish;
|
|
25
|
-
pairTraderStartIndex: BigNumberish;
|
|
23
|
+
traderStartIndex: BigNumberish;
|
|
26
24
|
positionsLimit: BigNumberish;
|
|
27
25
|
};
|
|
28
26
|
type GetAllPositionsDataForAllTradersParamsStructOutput = [
|
|
29
27
|
tradingFloor: string,
|
|
30
|
-
|
|
31
|
-
pairIdsStartIndex: bigint,
|
|
32
|
-
pairTraderStartIndex: bigint,
|
|
28
|
+
traderStartIndex: bigint,
|
|
33
29
|
positionsLimit: bigint
|
|
34
30
|
] & {
|
|
35
31
|
tradingFloor: string;
|
|
36
|
-
|
|
37
|
-
pairIdsStartIndex: bigint;
|
|
38
|
-
pairTraderStartIndex: bigint;
|
|
32
|
+
traderStartIndex: bigint;
|
|
39
33
|
positionsLimit: bigint;
|
|
40
34
|
};
|
|
41
35
|
type CompletePositionDataFromLensStruct = {
|
|
@@ -121,46 +115,34 @@ export declare namespace TradingFloorLensStructs {
|
|
|
121
115
|
type GetAllPositionsDataForAllTradersResultStruct = {
|
|
122
116
|
positions: TradingFloorLensStructs.CompletePositionDataFromLensStruct[];
|
|
123
117
|
positionsCount: BigNumberish;
|
|
124
|
-
|
|
125
|
-
pairIdsLastIndex: BigNumberish;
|
|
126
|
-
pairTraderLastIndex: BigNumberish;
|
|
118
|
+
traderLastIndex: BigNumberish;
|
|
127
119
|
done: boolean;
|
|
128
120
|
};
|
|
129
121
|
type GetAllPositionsDataForAllTradersResultStructOutput = [
|
|
130
122
|
positions: TradingFloorLensStructs.CompletePositionDataFromLensStructOutput[],
|
|
131
123
|
positionsCount: bigint,
|
|
132
|
-
|
|
133
|
-
pairIdsLastIndex: bigint,
|
|
134
|
-
pairTraderLastIndex: bigint,
|
|
124
|
+
traderLastIndex: bigint,
|
|
135
125
|
done: boolean
|
|
136
126
|
] & {
|
|
137
127
|
positions: TradingFloorLensStructs.CompletePositionDataFromLensStructOutput[];
|
|
138
128
|
positionsCount: bigint;
|
|
139
|
-
|
|
140
|
-
pairIdsLastIndex: bigint;
|
|
141
|
-
pairTraderLastIndex: bigint;
|
|
129
|
+
traderLastIndex: bigint;
|
|
142
130
|
done: boolean;
|
|
143
131
|
};
|
|
144
132
|
type GetAllPositionsLiquidationInfoParamsStruct = {
|
|
145
133
|
tradingFloor: AddressLike;
|
|
146
|
-
|
|
147
|
-
pairIdsStartIndex: BigNumberish;
|
|
148
|
-
pairTraderStartIndex: BigNumberish;
|
|
134
|
+
traderStartIndex: BigNumberish;
|
|
149
135
|
positionStartIndex: BigNumberish;
|
|
150
136
|
positionsLimit: BigNumberish;
|
|
151
137
|
};
|
|
152
138
|
type GetAllPositionsLiquidationInfoParamsStructOutput = [
|
|
153
139
|
tradingFloor: string,
|
|
154
|
-
|
|
155
|
-
pairIdsStartIndex: bigint,
|
|
156
|
-
pairTraderStartIndex: bigint,
|
|
140
|
+
traderStartIndex: bigint,
|
|
157
141
|
positionStartIndex: bigint,
|
|
158
142
|
positionsLimit: bigint
|
|
159
143
|
] & {
|
|
160
144
|
tradingFloor: string;
|
|
161
|
-
|
|
162
|
-
pairIdsStartIndex: bigint;
|
|
163
|
-
pairTraderStartIndex: bigint;
|
|
145
|
+
traderStartIndex: bigint;
|
|
164
146
|
positionStartIndex: bigint;
|
|
165
147
|
positionsLimit: bigint;
|
|
166
148
|
};
|
|
@@ -187,56 +169,44 @@ export declare namespace TradingFloorLensStructs {
|
|
|
187
169
|
type GetAllPositionsLiquidationInfoResultStruct = {
|
|
188
170
|
positionsLiquidationInfo: TradingFloorLensStructs.PositionLiquidationInfoStruct[];
|
|
189
171
|
positionsCount: BigNumberish;
|
|
190
|
-
|
|
191
|
-
pairIdsLastIndex: BigNumberish;
|
|
192
|
-
pairTraderLastIndex: BigNumberish;
|
|
172
|
+
traderLastIndex: BigNumberish;
|
|
193
173
|
positionLastIndex: BigNumberish;
|
|
194
174
|
done: boolean;
|
|
195
175
|
};
|
|
196
176
|
type GetAllPositionsLiquidationInfoResultStructOutput = [
|
|
197
177
|
positionsLiquidationInfo: TradingFloorLensStructs.PositionLiquidationInfoStructOutput[],
|
|
198
178
|
positionsCount: bigint,
|
|
199
|
-
|
|
200
|
-
pairIdsLastIndex: bigint,
|
|
201
|
-
pairTraderLastIndex: bigint,
|
|
179
|
+
traderLastIndex: bigint,
|
|
202
180
|
positionLastIndex: bigint,
|
|
203
181
|
done: boolean
|
|
204
182
|
] & {
|
|
205
183
|
positionsLiquidationInfo: TradingFloorLensStructs.PositionLiquidationInfoStructOutput[];
|
|
206
184
|
positionsCount: bigint;
|
|
207
|
-
|
|
208
|
-
pairIdsLastIndex: bigint;
|
|
209
|
-
pairTraderLastIndex: bigint;
|
|
185
|
+
traderLastIndex: bigint;
|
|
210
186
|
positionLastIndex: bigint;
|
|
211
187
|
done: boolean;
|
|
212
188
|
};
|
|
213
189
|
}
|
|
214
190
|
export interface TradingFloorLensInterface extends Interface {
|
|
215
|
-
getFunction(nameOrSignature: "generatePositionHashId" | "getAllPositionsDataForAllTraders" | "
|
|
191
|
+
getFunction(nameOrSignature: "generatePositionHashId" | "getAllPositionsDataForAllTraders" | "getAllPositionsLiquidationInfo((address,uint256,uint16,uint256))" | "getAllPositionsLiquidationInfo((address,uint256,uint16,uint256),uint8[])" | "getCompletePositionData" | "getPositionsDataForTrader" | "getTradingFloorTradeParams"): FunctionFragment;
|
|
216
192
|
encodeFunctionData(functionFragment: "generatePositionHashId", values: [AddressLike, AddressLike, BigNumberish, BigNumberish]): string;
|
|
217
193
|
encodeFunctionData(functionFragment: "getAllPositionsDataForAllTraders", values: [
|
|
218
194
|
TradingFloorLensStructs.GetAllPositionsDataForAllTradersParamsStruct
|
|
219
195
|
]): string;
|
|
220
|
-
encodeFunctionData(functionFragment: "
|
|
221
|
-
encodeFunctionData(functionFragment: "
|
|
222
|
-
encodeFunctionData(functionFragment: "getAllPositionsLiquidationInfo((address,uint256,uint256,uint256,uint16,uint256),uint8[])", values: [
|
|
196
|
+
encodeFunctionData(functionFragment: "getAllPositionsLiquidationInfo((address,uint256,uint16,uint256))", values: [TradingFloorLensStructs.GetAllPositionsLiquidationInfoParamsStruct]): string;
|
|
197
|
+
encodeFunctionData(functionFragment: "getAllPositionsLiquidationInfo((address,uint256,uint16,uint256),uint8[])", values: [
|
|
223
198
|
TradingFloorLensStructs.GetAllPositionsLiquidationInfoParamsStruct,
|
|
224
199
|
BigNumberish[]
|
|
225
200
|
]): string;
|
|
226
|
-
encodeFunctionData(functionFragment: "getAllPositionsLiquidationInfo((address,uint256,uint256,uint256,uint16,uint256))", values: [TradingFloorLensStructs.GetAllPositionsLiquidationInfoParamsStruct]): string;
|
|
227
201
|
encodeFunctionData(functionFragment: "getCompletePositionData", values: [AddressLike, BytesLike]): string;
|
|
228
|
-
encodeFunctionData(functionFragment: "
|
|
229
|
-
encodeFunctionData(functionFragment: "getPositionsDataInPairForTrader", values: [AddressLike, AddressLike, AddressLike, BigNumberish]): string;
|
|
202
|
+
encodeFunctionData(functionFragment: "getPositionsDataForTrader", values: [AddressLike, AddressLike]): string;
|
|
230
203
|
encodeFunctionData(functionFragment: "getTradingFloorTradeParams", values: [AddressLike]): string;
|
|
231
204
|
decodeFunctionResult(functionFragment: "generatePositionHashId", data: BytesLike): Result;
|
|
232
205
|
decodeFunctionResult(functionFragment: "getAllPositionsDataForAllTraders", data: BytesLike): Result;
|
|
233
|
-
decodeFunctionResult(functionFragment: "
|
|
234
|
-
decodeFunctionResult(functionFragment: "
|
|
235
|
-
decodeFunctionResult(functionFragment: "getAllPositionsLiquidationInfo((address,uint256,uint256,uint256,uint16,uint256),uint8[])", data: BytesLike): Result;
|
|
236
|
-
decodeFunctionResult(functionFragment: "getAllPositionsLiquidationInfo((address,uint256,uint256,uint256,uint16,uint256))", data: BytesLike): Result;
|
|
206
|
+
decodeFunctionResult(functionFragment: "getAllPositionsLiquidationInfo((address,uint256,uint16,uint256))", data: BytesLike): Result;
|
|
207
|
+
decodeFunctionResult(functionFragment: "getAllPositionsLiquidationInfo((address,uint256,uint16,uint256),uint8[])", data: BytesLike): Result;
|
|
237
208
|
decodeFunctionResult(functionFragment: "getCompletePositionData", data: BytesLike): Result;
|
|
238
|
-
decodeFunctionResult(functionFragment: "
|
|
239
|
-
decodeFunctionResult(functionFragment: "getPositionsDataInPairForTrader", data: BytesLike): Result;
|
|
209
|
+
decodeFunctionResult(functionFragment: "getPositionsDataForTrader", data: BytesLike): Result;
|
|
240
210
|
decodeFunctionResult(functionFragment: "getTradingFloorTradeParams", data: BytesLike): Result;
|
|
241
211
|
}
|
|
242
212
|
export interface TradingFloorLens extends BaseContract {
|
|
@@ -265,50 +235,26 @@ export interface TradingFloorLens extends BaseContract {
|
|
|
265
235
|
], [
|
|
266
236
|
TradingFloorLensStructs.GetAllPositionsDataForAllTradersResultStructOutput
|
|
267
237
|
], "nonpayable">;
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
settlementAsset: AddressLike,
|
|
271
|
-
arraySize: BigNumberish
|
|
272
|
-
], [
|
|
273
|
-
TradingFloorLensStructs.CompletePositionDataFromLensStructOutput[]
|
|
274
|
-
], "nonpayable">;
|
|
275
|
-
getAllPositionsDataForTraderInDimension: TypedContractMethod<[
|
|
276
|
-
tradingFloor: AddressLike,
|
|
277
|
-
settlementAsset: AddressLike,
|
|
278
|
-
trader: AddressLike
|
|
238
|
+
"getAllPositionsLiquidationInfo((address,uint256,uint16,uint256))": TypedContractMethod<[
|
|
239
|
+
params: TradingFloorLensStructs.GetAllPositionsLiquidationInfoParamsStruct
|
|
279
240
|
], [
|
|
280
|
-
TradingFloorLensStructs.
|
|
241
|
+
TradingFloorLensStructs.GetAllPositionsLiquidationInfoResultStructOutput
|
|
281
242
|
], "nonpayable">;
|
|
282
|
-
"getAllPositionsLiquidationInfo((address,uint256,
|
|
243
|
+
"getAllPositionsLiquidationInfo((address,uint256,uint16,uint256),uint8[])": TypedContractMethod<[
|
|
283
244
|
params: TradingFloorLensStructs.GetAllPositionsLiquidationInfoParamsStruct,
|
|
284
245
|
phasesFilterIn: BigNumberish[]
|
|
285
246
|
], [
|
|
286
247
|
TradingFloorLensStructs.GetAllPositionsLiquidationInfoResultStructOutput
|
|
287
248
|
], "nonpayable">;
|
|
288
|
-
"getAllPositionsLiquidationInfo((address,uint256,uint256,uint256,uint16,uint256))": TypedContractMethod<[
|
|
289
|
-
params: TradingFloorLensStructs.GetAllPositionsLiquidationInfoParamsStruct
|
|
290
|
-
], [
|
|
291
|
-
TradingFloorLensStructs.GetAllPositionsLiquidationInfoResultStructOutput
|
|
292
|
-
], "nonpayable">;
|
|
293
249
|
getCompletePositionData: TypedContractMethod<[
|
|
294
250
|
tradingFloor: AddressLike,
|
|
295
251
|
positionId: BytesLike
|
|
296
252
|
], [
|
|
297
253
|
TradingFloorLensStructs.CompletePositionDataFromLensStructOutput
|
|
298
254
|
], "nonpayable">;
|
|
299
|
-
|
|
300
|
-
tradingFloor: AddressLike,
|
|
301
|
-
settlementAsset: AddressLike,
|
|
302
|
-
trader: AddressLike,
|
|
303
|
-
pairIds: BigNumberish[]
|
|
304
|
-
], [
|
|
305
|
-
TradingFloorLensStructs.CompletePositionDataFromLensStructOutput[]
|
|
306
|
-
], "nonpayable">;
|
|
307
|
-
getPositionsDataInPairForTrader: TypedContractMethod<[
|
|
255
|
+
getPositionsDataForTrader: TypedContractMethod<[
|
|
308
256
|
tradingFloor: AddressLike,
|
|
309
|
-
|
|
310
|
-
trader: AddressLike,
|
|
311
|
-
pairId: BigNumberish
|
|
257
|
+
trader: AddressLike
|
|
312
258
|
], [
|
|
313
259
|
TradingFloorLensStructs.CompletePositionDataFromLensStructOutput[]
|
|
314
260
|
], "nonpayable">;
|
|
@@ -331,50 +277,26 @@ export interface TradingFloorLens extends BaseContract {
|
|
|
331
277
|
], [
|
|
332
278
|
TradingFloorLensStructs.GetAllPositionsDataForAllTradersResultStructOutput
|
|
333
279
|
], "nonpayable">;
|
|
334
|
-
getFunction(nameOrSignature: "
|
|
335
|
-
|
|
336
|
-
settlementAsset: AddressLike,
|
|
337
|
-
arraySize: BigNumberish
|
|
338
|
-
], [
|
|
339
|
-
TradingFloorLensStructs.CompletePositionDataFromLensStructOutput[]
|
|
340
|
-
], "nonpayable">;
|
|
341
|
-
getFunction(nameOrSignature: "getAllPositionsDataForTraderInDimension"): TypedContractMethod<[
|
|
342
|
-
tradingFloor: AddressLike,
|
|
343
|
-
settlementAsset: AddressLike,
|
|
344
|
-
trader: AddressLike
|
|
280
|
+
getFunction(nameOrSignature: "getAllPositionsLiquidationInfo((address,uint256,uint16,uint256))"): TypedContractMethod<[
|
|
281
|
+
params: TradingFloorLensStructs.GetAllPositionsLiquidationInfoParamsStruct
|
|
345
282
|
], [
|
|
346
|
-
TradingFloorLensStructs.
|
|
283
|
+
TradingFloorLensStructs.GetAllPositionsLiquidationInfoResultStructOutput
|
|
347
284
|
], "nonpayable">;
|
|
348
|
-
getFunction(nameOrSignature: "getAllPositionsLiquidationInfo((address,uint256,
|
|
285
|
+
getFunction(nameOrSignature: "getAllPositionsLiquidationInfo((address,uint256,uint16,uint256),uint8[])"): TypedContractMethod<[
|
|
349
286
|
params: TradingFloorLensStructs.GetAllPositionsLiquidationInfoParamsStruct,
|
|
350
287
|
phasesFilterIn: BigNumberish[]
|
|
351
288
|
], [
|
|
352
289
|
TradingFloorLensStructs.GetAllPositionsLiquidationInfoResultStructOutput
|
|
353
290
|
], "nonpayable">;
|
|
354
|
-
getFunction(nameOrSignature: "getAllPositionsLiquidationInfo((address,uint256,uint256,uint256,uint16,uint256))"): TypedContractMethod<[
|
|
355
|
-
params: TradingFloorLensStructs.GetAllPositionsLiquidationInfoParamsStruct
|
|
356
|
-
], [
|
|
357
|
-
TradingFloorLensStructs.GetAllPositionsLiquidationInfoResultStructOutput
|
|
358
|
-
], "nonpayable">;
|
|
359
291
|
getFunction(nameOrSignature: "getCompletePositionData"): TypedContractMethod<[
|
|
360
292
|
tradingFloor: AddressLike,
|
|
361
293
|
positionId: BytesLike
|
|
362
294
|
], [
|
|
363
295
|
TradingFloorLensStructs.CompletePositionDataFromLensStructOutput
|
|
364
296
|
], "nonpayable">;
|
|
365
|
-
getFunction(nameOrSignature: "
|
|
366
|
-
tradingFloor: AddressLike,
|
|
367
|
-
settlementAsset: AddressLike,
|
|
368
|
-
trader: AddressLike,
|
|
369
|
-
pairIds: BigNumberish[]
|
|
370
|
-
], [
|
|
371
|
-
TradingFloorLensStructs.CompletePositionDataFromLensStructOutput[]
|
|
372
|
-
], "nonpayable">;
|
|
373
|
-
getFunction(nameOrSignature: "getPositionsDataInPairForTrader"): TypedContractMethod<[
|
|
297
|
+
getFunction(nameOrSignature: "getPositionsDataForTrader"): TypedContractMethod<[
|
|
374
298
|
tradingFloor: AddressLike,
|
|
375
|
-
|
|
376
|
-
trader: AddressLike,
|
|
377
|
-
pairId: BigNumberish
|
|
299
|
+
trader: AddressLike
|
|
378
300
|
], [
|
|
379
301
|
TradingFloorLensStructs.CompletePositionDataFromLensStructOutput[]
|
|
380
302
|
], "nonpayable">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TradingFloorLens.d.ts","sourceRoot":"","sources":["../../../../../../../lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"TradingFloorLens.d.ts","sourceRoot":"","sources":["../../../../../../../lib/typechain/contracts/Peripheral/Lens/TradingFloorLens.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,158 @@
|
|
|
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 interface SinglePhaseSingleTokenDistributorInterface extends Interface {
|
|
4
|
+
getFunction(nameOrSignature: "acceptOwnership" | "claimToken" | "distributed" | "distributedToken" | "distributionAmounts" | "owner" | "pendingOwner" | "renounceOwnership" | "selfBalance" | "setAmounts" | "sweepToken" | "totalCommitment" | "totalDistributed" | "transferOwnership"): FunctionFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "DistributionAssigned" | "OwnershipTransferStarted" | "OwnershipTransferred" | "TokenDistributed"): EventFragment;
|
|
6
|
+
encodeFunctionData(functionFragment: "acceptOwnership", values?: undefined): string;
|
|
7
|
+
encodeFunctionData(functionFragment: "claimToken", values?: undefined): string;
|
|
8
|
+
encodeFunctionData(functionFragment: "distributed", values: [AddressLike]): string;
|
|
9
|
+
encodeFunctionData(functionFragment: "distributedToken", values?: undefined): string;
|
|
10
|
+
encodeFunctionData(functionFragment: "distributionAmounts", values: [AddressLike]): string;
|
|
11
|
+
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
12
|
+
encodeFunctionData(functionFragment: "pendingOwner", values?: undefined): string;
|
|
13
|
+
encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
|
|
14
|
+
encodeFunctionData(functionFragment: "selfBalance", values?: undefined): string;
|
|
15
|
+
encodeFunctionData(functionFragment: "setAmounts", values: [AddressLike[], BigNumberish[]]): string;
|
|
16
|
+
encodeFunctionData(functionFragment: "sweepToken", values: [AddressLike]): string;
|
|
17
|
+
encodeFunctionData(functionFragment: "totalCommitment", values?: undefined): string;
|
|
18
|
+
encodeFunctionData(functionFragment: "totalDistributed", values?: undefined): string;
|
|
19
|
+
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
|
|
20
|
+
decodeFunctionResult(functionFragment: "acceptOwnership", data: BytesLike): Result;
|
|
21
|
+
decodeFunctionResult(functionFragment: "claimToken", data: BytesLike): Result;
|
|
22
|
+
decodeFunctionResult(functionFragment: "distributed", data: BytesLike): Result;
|
|
23
|
+
decodeFunctionResult(functionFragment: "distributedToken", data: BytesLike): Result;
|
|
24
|
+
decodeFunctionResult(functionFragment: "distributionAmounts", data: BytesLike): Result;
|
|
25
|
+
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
26
|
+
decodeFunctionResult(functionFragment: "pendingOwner", data: BytesLike): Result;
|
|
27
|
+
decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
|
|
28
|
+
decodeFunctionResult(functionFragment: "selfBalance", data: BytesLike): Result;
|
|
29
|
+
decodeFunctionResult(functionFragment: "setAmounts", data: BytesLike): Result;
|
|
30
|
+
decodeFunctionResult(functionFragment: "sweepToken", data: BytesLike): Result;
|
|
31
|
+
decodeFunctionResult(functionFragment: "totalCommitment", data: BytesLike): Result;
|
|
32
|
+
decodeFunctionResult(functionFragment: "totalDistributed", data: BytesLike): Result;
|
|
33
|
+
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
|
|
34
|
+
}
|
|
35
|
+
export declare namespace DistributionAssignedEvent {
|
|
36
|
+
type InputTuple = [account: AddressLike, amount: BigNumberish];
|
|
37
|
+
type OutputTuple = [account: string, amount: bigint];
|
|
38
|
+
interface OutputObject {
|
|
39
|
+
account: string;
|
|
40
|
+
amount: bigint;
|
|
41
|
+
}
|
|
42
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
43
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
44
|
+
type Log = TypedEventLog<Event>;
|
|
45
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
46
|
+
}
|
|
47
|
+
export declare namespace OwnershipTransferStartedEvent {
|
|
48
|
+
type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
|
|
49
|
+
type OutputTuple = [previousOwner: string, newOwner: string];
|
|
50
|
+
interface OutputObject {
|
|
51
|
+
previousOwner: string;
|
|
52
|
+
newOwner: string;
|
|
53
|
+
}
|
|
54
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
55
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
56
|
+
type Log = TypedEventLog<Event>;
|
|
57
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
58
|
+
}
|
|
59
|
+
export declare namespace OwnershipTransferredEvent {
|
|
60
|
+
type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
|
|
61
|
+
type OutputTuple = [previousOwner: string, newOwner: string];
|
|
62
|
+
interface OutputObject {
|
|
63
|
+
previousOwner: string;
|
|
64
|
+
newOwner: string;
|
|
65
|
+
}
|
|
66
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
67
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
68
|
+
type Log = TypedEventLog<Event>;
|
|
69
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
70
|
+
}
|
|
71
|
+
export declare namespace TokenDistributedEvent {
|
|
72
|
+
type InputTuple = [account: AddressLike, amount: BigNumberish];
|
|
73
|
+
type OutputTuple = [account: string, amount: bigint];
|
|
74
|
+
interface OutputObject {
|
|
75
|
+
account: string;
|
|
76
|
+
amount: bigint;
|
|
77
|
+
}
|
|
78
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
79
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
80
|
+
type Log = TypedEventLog<Event>;
|
|
81
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
82
|
+
}
|
|
83
|
+
export interface SinglePhaseSingleTokenDistributor extends BaseContract {
|
|
84
|
+
connect(runner?: ContractRunner | null): SinglePhaseSingleTokenDistributor;
|
|
85
|
+
waitForDeployment(): Promise<this>;
|
|
86
|
+
interface: SinglePhaseSingleTokenDistributorInterface;
|
|
87
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
88
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
89
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
90
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
91
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
92
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
93
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
94
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
95
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
96
|
+
acceptOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
97
|
+
claimToken: TypedContractMethod<[], [void], "nonpayable">;
|
|
98
|
+
distributed: TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
99
|
+
distributedToken: TypedContractMethod<[], [string], "view">;
|
|
100
|
+
distributionAmounts: TypedContractMethod<[
|
|
101
|
+
arg0: AddressLike
|
|
102
|
+
], [
|
|
103
|
+
bigint
|
|
104
|
+
], "view">;
|
|
105
|
+
owner: TypedContractMethod<[], [string], "view">;
|
|
106
|
+
pendingOwner: TypedContractMethod<[], [string], "view">;
|
|
107
|
+
renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
108
|
+
selfBalance: TypedContractMethod<[], [bigint], "view">;
|
|
109
|
+
setAmounts: TypedContractMethod<[
|
|
110
|
+
_accounts: AddressLike[],
|
|
111
|
+
_amounts: BigNumberish[]
|
|
112
|
+
], [
|
|
113
|
+
void
|
|
114
|
+
], "nonpayable">;
|
|
115
|
+
sweepToken: TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
|
|
116
|
+
totalCommitment: TypedContractMethod<[], [bigint], "view">;
|
|
117
|
+
totalDistributed: TypedContractMethod<[], [bigint], "view">;
|
|
118
|
+
transferOwnership: TypedContractMethod<[
|
|
119
|
+
newOwner: AddressLike
|
|
120
|
+
], [
|
|
121
|
+
void
|
|
122
|
+
], "nonpayable">;
|
|
123
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
124
|
+
getFunction(nameOrSignature: "acceptOwnership"): TypedContractMethod<[], [void], "nonpayable">;
|
|
125
|
+
getFunction(nameOrSignature: "claimToken"): TypedContractMethod<[], [void], "nonpayable">;
|
|
126
|
+
getFunction(nameOrSignature: "distributed"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
127
|
+
getFunction(nameOrSignature: "distributedToken"): TypedContractMethod<[], [string], "view">;
|
|
128
|
+
getFunction(nameOrSignature: "distributionAmounts"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
129
|
+
getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
|
|
130
|
+
getFunction(nameOrSignature: "pendingOwner"): TypedContractMethod<[], [string], "view">;
|
|
131
|
+
getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
|
|
132
|
+
getFunction(nameOrSignature: "selfBalance"): TypedContractMethod<[], [bigint], "view">;
|
|
133
|
+
getFunction(nameOrSignature: "setAmounts"): TypedContractMethod<[
|
|
134
|
+
_accounts: AddressLike[],
|
|
135
|
+
_amounts: BigNumberish[]
|
|
136
|
+
], [
|
|
137
|
+
void
|
|
138
|
+
], "nonpayable">;
|
|
139
|
+
getFunction(nameOrSignature: "sweepToken"): TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
|
|
140
|
+
getFunction(nameOrSignature: "totalCommitment"): TypedContractMethod<[], [bigint], "view">;
|
|
141
|
+
getFunction(nameOrSignature: "totalDistributed"): TypedContractMethod<[], [bigint], "view">;
|
|
142
|
+
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
|
|
143
|
+
getEvent(key: "DistributionAssigned"): TypedContractEvent<DistributionAssignedEvent.InputTuple, DistributionAssignedEvent.OutputTuple, DistributionAssignedEvent.OutputObject>;
|
|
144
|
+
getEvent(key: "OwnershipTransferStarted"): TypedContractEvent<OwnershipTransferStartedEvent.InputTuple, OwnershipTransferStartedEvent.OutputTuple, OwnershipTransferStartedEvent.OutputObject>;
|
|
145
|
+
getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
146
|
+
getEvent(key: "TokenDistributed"): TypedContractEvent<TokenDistributedEvent.InputTuple, TokenDistributedEvent.OutputTuple, TokenDistributedEvent.OutputObject>;
|
|
147
|
+
filters: {
|
|
148
|
+
"DistributionAssigned(address,uint256)": TypedContractEvent<DistributionAssignedEvent.InputTuple, DistributionAssignedEvent.OutputTuple, DistributionAssignedEvent.OutputObject>;
|
|
149
|
+
DistributionAssigned: TypedContractEvent<DistributionAssignedEvent.InputTuple, DistributionAssignedEvent.OutputTuple, DistributionAssignedEvent.OutputObject>;
|
|
150
|
+
"OwnershipTransferStarted(address,address)": TypedContractEvent<OwnershipTransferStartedEvent.InputTuple, OwnershipTransferStartedEvent.OutputTuple, OwnershipTransferStartedEvent.OutputObject>;
|
|
151
|
+
OwnershipTransferStarted: TypedContractEvent<OwnershipTransferStartedEvent.InputTuple, OwnershipTransferStartedEvent.OutputTuple, OwnershipTransferStartedEvent.OutputObject>;
|
|
152
|
+
"OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
153
|
+
OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
154
|
+
"TokenDistributed(address,uint256)": TypedContractEvent<TokenDistributedEvent.InputTuple, TokenDistributedEvent.OutputTuple, TokenDistributedEvent.OutputObject>;
|
|
155
|
+
TokenDistributed: TypedContractEvent<TokenDistributedEvent.InputTuple, TokenDistributedEvent.OutputTuple, TokenDistributedEvent.OutputObject>;
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
//# sourceMappingURL=SinglePhaseSingleTokenDistributor.d.ts.map
|