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
|
@@ -0,0 +1,1425 @@
|
|
|
1
|
+
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
+
import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
+
import type { NonPayableOverrides } from "../../../../../common";
|
|
4
|
+
import type { LexPoolV1, LexPoolV1Interface } from "../../../../../contracts/Lynx/Lex/LexPool/LexPoolV1";
|
|
5
|
+
type LexPoolV1ConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
+
export declare class LexPoolV1__factory extends ContractFactory {
|
|
7
|
+
constructor(...args: LexPoolV1ConstructorParams);
|
|
8
|
+
getDeployTransaction(overrides?: NonPayableOverrides & {
|
|
9
|
+
from?: string;
|
|
10
|
+
}): Promise<ContractDeployTransaction>;
|
|
11
|
+
deploy(overrides?: NonPayableOverrides & {
|
|
12
|
+
from?: string;
|
|
13
|
+
}): Promise<LexPoolV1 & {
|
|
14
|
+
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
+
}>;
|
|
16
|
+
connect(runner: ContractRunner | null): LexPoolV1__factory;
|
|
17
|
+
static readonly bytecode = "0x608060405234801561001057600080fd5b50600080546001600160a01b03191633179055614417806100326000396000f3fe608060405234801561001057600080fd5b50600436106104545760003560e01c806380193b2611610241578063c12d636b1161013b578063e1618fe8116100c3578063ef693fe411610087578063ef693fe4146109c6578063f2fc6e66146109cf578063f851a440146109e2578063f87fc31c146109f5578063ff9d4ff314610a0857600080fd5b8063e1618fe81461097c578063e5abb5a51461098f578063eb449c2f146109a2578063eb6ced71146109b5578063eda6d6be146109bd57600080fd5b8063cb5460fd1161010a578063cb5460fd146108c0578063d03bfffd146108d3578063d3c5b5f8146108db578063d3fd3cf514610930578063dd62ed3e1461094357600080fd5b8063c12d636b1461087e578063c6775bad14610891578063c6b27f24146108a4578063c87d7e8d146108ad57600080fd5b8063a9059cbb116101c9578063b225018d1161018d578063b225018d14610838578063b407153c1461084b578063b71f3cfe14610858578063baf7fdd614610863578063bd3658e61461086b57600080fd5b8063a9059cbb14610801578063aaf5eb681461073c578063ad1f2b5614610814578063af8a89ce1461081c578063b16e49b31461082f57600080fd5b80639980a5f3116102105780639980a5f3146107b65780639b27168b146107c95780639bb7d707146107d2578063a3684977146107e5578063a7227981146107ee57600080fd5b806380193b261461077e57806392c51a7e1461078857806394870a541461079b57806395d89b41146107ae57600080fd5b8063313ce567116103525780635c60da1b116102da57806370a082311161029e57806370a082311461070a578063766718081461073357806379c80dc21461073c5780637b1039991461074b5780637bd1bf0c1461075e57600080fd5b80635c60da1b146106c057806360f3da41146106d357806361428953146106db578063645006ca146106ee5780636f307dc3146106f757600080fd5b80633ce9a294116103215780633ce9a2941461062a578063414a831f1461063d578063470aad06146106505780634ff0876a1461067057806356ef801b1461067957600080fd5b8063313ce567146105ed5780633233c5e3146105fc578063396f7b231461060f5780633a8f09f31461062257600080fd5b80631d504dc6116103e057806326782247116103a457806326782247146105985780632a80cda3146105ab5780632c5b1066146105be5780632d4138c1146105c757806330024dfe146105da57600080fd5b80631d504dc61461054357806321d491131461055657806323b872dd1461056957806323c874201461057c57806325a760c21461058f57600080fd5b80630d3b0b76116104275780630d3b0b76146104df57806312a45f651461050a578063149673191461051f5780631794bb3c1461052757806318160ddd1461053a57600080fd5b8063022dced21461045957806306fdde0314610474578063095ea7b314610489578063098ee6f2146104ac575b600080fd5b610461610a28565b6040519081526020015b60405180910390f35b61047c610a8c565b60405161046b91906139bd565b61049c610497366004613a05565b610b1a565b604051901515815260200161046b565b6104bf6104ba366004613a7d565b610b31565b60408051948552602085019390935291830152606082015260800161046b565b6006546104f2906001600160a01b031681565b6040516001600160a01b03909116815260200161046b565b61051d610518366004613abf565b610cb2565b005b61049c610d3c565b61051d610535366004613af8565b610d68565b61046160095481565b61051d610551366004613b39565b610d9e565b61051d610564366004613a05565b610eec565b61049c610577366004613af8565b610f56565b600e546104f2906001600160a01b031681565b610461600c5481565b6001546104f2906001600160a01b031681565b61051d6105b9366004613b56565b611002565b61046160145481565b6104f26105d5366004613b6f565b61106b565b61051d6105e8366004613b56565b6110a3565b6040516012815260200161046b565b61051d61060a366004613c56565b6110d9565b6003546104f2906001600160a01b031681565b61051d611159565b610461610638366004613b6f565b6111c8565b61051d61064b366004613cba565b61125e565b61066361065e366004613d26565b611448565b60405161046b9190613d52565b610461601c5481565b6106ab610687366004613d9f565b600f6020908152600092835260408084209091529082529020805460019091015482565b6040805192835260208301919091520161046b565b6002546104f2906001600160a01b031681565b61046161146c565b6104616106e9366004613b56565b611579565b61046160165481565b6005546104f2906001600160a01b031681565b610461610718366004613b39565b6001600160a01b031660009081526007602052604090205490565b61046160175481565b610461670de0b6b3a764000081565b6004546104f2906001600160a01b031681565b61046161076c366004613b56565b60009081526011602052604090205490565b610461620186a081565b61051d610796366004613cba565b61182a565b61051d6107a9366004613b39565b611a82565b61047c611b4a565b61051d6107c4366004613dc4565b611b57565b61046160155481565b6104616107e0366004613d26565b611c39565b61046160195481565b6106636107fc366004613d26565b611c92565b61049c61080f366004613a05565b611cae565b610461606481565b61051d61082a366004613df9565b611cbb565b610461601b5481565b61051d610846366004613b39565b611cfd565b601d5461049c9060ff1681565b610461633b9aca0081565b610461611d90565b610461610879366004613b56565b611db9565b600d546104f2906001600160a01b031681565b61051d61089f366004613b56565b611dc7565b61046160185481565b61051d6108bb366004613b6f565b611dfd565b61051d6108ce366004613b56565b611e1a565b610461611e50565b6109156108e9366004613d9f565b601060209081526000928352604080842090915290825290208054600182015460029092015490919083565b6040805193845260208401929092529082015260600161046b565b6104bf61093e366004613a7d565b611f48565b610461610951366004613abf565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b6104f261098a366004613b6f565b6120b6565b61051d61099d366004613b56565b6120d2565b6106ab6109b0366004613b39565b612108565b610461612339565b61046160135481565b610461601a5481565b61051d6109dd366004613e2b565b6123a6565b6000546104f2906001600160a01b031681565b61051d610a03366004613d26565b6124b4565b610461610a16366004613b56565b60009081526012602052604090205490565b600080610a33612339565b601354909150808211610a7b5760405162461bcd60e51b815260206004820152600b60248201526a2330ba30b61032b93937b960a91b60448201526064015b60405180910390fd5b610a858183613e85565b9250505090565b600a8054610a9990613e98565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac590613e98565b8015610b125780601f10610ae757610100808354040283529160200191610b12565b820191906000526020600020905b815481529060010190602001808311610af557829003601f168201915b505050505081565b6000610b27338484612645565b5060015b92915050565b600080600080610b3f61276a565b600d546001600160a01b031663e0dc1750610b58611e50565b6040518263ffffffff1660e01b8152600401610b7691815260200190565b6060604051808303816000875af1158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb99190613ed2565b50506017546019549091506000805b60ff8116891115610c8457600080600080610c0d888f8f8860ff16818110610bf257610bf2613f00565b9050602002016020810190610c079190613b39565b896127c1565b935093509350935083610c235750505050610c72565b8215610c4757610c33828d613f16565b9b50610c4060018b613f16565b9950610c61565b610c51828c613f16565b9a50610c5e60018a613f16565b98505b610c6b8187613f16565b9550505050505b80610c7c81613f29565b915050610bc8565b508060146000828254610c979190613e85565b92505081905550505050610ca9612936565b92959194509250565b6006546001600160a01b0316158015610cd457506005546001600160a01b0316155b610d0e5760405162461bcd60e51b815260206004820152600b60248201526a125b9a5d1a585b1a5e995960aa1b6044820152606401610a72565b600680546001600160a01b039384166001600160a01b03199182161790915560058054929093169116179055565b600080610d4761146c565b90506000610d5e670de0b6b3a76400006001613f48565b9091111592915050565b610d73828483612979565b600c54610d8190600a614043565b6019556002601a819055601b55610d96611d90565b601855505050565b806001600160a01b031663f851a4406040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e00919061404f565b6001600160a01b0316336001600160a01b031614610e4f5760405162461bcd60e51b815260206004820152600c60248201526b10b83937bc3c9730b236b4b760a11b6044820152606401610a72565b806001600160a01b031663c1e803346040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610e8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb3919061406c565b15610ee95760405162461bcd60e51b8152600401610a729060208082526004908201526319985a5b60e21b604082015260600190565b50565b6006546001600160a01b03163314610f3b5760405162461bcd60e51b815260206004820152601260248201527154524144494e475f464c4f4f525f4f4e4c5960701b6044820152606401610a72565b600554610f52906001600160a01b03168383612b04565b5050565b6000610f63848484612b63565b6001600160a01b038416600090815260086020908152604080832033845290915290205482811015610fe85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a72565b610ff58533858403612645565b60019150505b9392505050565b6000546001600160a01b0316331461102c5760405162461bcd60e51b8152600401610a7290614085565b601681905560055b6040518281527fcb48ce14f4edda961e8a606e8fd9c6562f93440fb820dca0908689c65412abd1906020015b60405180910390a250565b6012602052816000526040600020818154811061108757600080fd5b6000918252602090912001546001600160a01b03169150829050565b6000546001600160a01b031633146110cd5760405162461bcd60e51b8152600401610a7290614085565b601c8190556004611034565b600a80546110e690613e98565b15905080156111015750600b80546110fd90613e98565b1590505b61113b5760405162461bcd60e51b815260206004820152600b60248201526a125b9a5d1a585b1a5e995960aa1b6044820152606401610a72565b600a61114783826140f9565b50600b61115482826140f9565b505050565b6000546001600160a01b031633146111835760405162461bcd60e51b8152600401610a7290614085565b601d805460ff19811660ff9182161590811790925560405191161515907fc9f43b0876da39c7355d8836120531728db6aaced21ca1337740891901ba3dc190600090a2565b6000806111d3612339565b905060008084126111e55760006111f6565b6111f66111f1856141b9565b612d32565b9050600060145460135461120a9190613f16565b9050816112178783613f16565b6112219190613f16565b8310156112345760009350505050610b2b565b81866112408386613e85565b61124a9190613e85565b6112549190613e85565b9695505050505050565b61126661276a565b8281146112a55760405162461bcd60e51b815260206004820152600d60248201526c2141727261794c656e6774687360981b6044820152606401610a72565b600060016017546112b69190613e85565b905060005b60ff811685111561143857600086868360ff168181106112dd576112dd613f00565b90506020020160208101906112f29190613b39565b9050600085858460ff1681811061130b5761130b613f00565b905060200201359050838111156113555760405162461bcd60e51b815260206004820152600e60248201526d22b837b1b4103a37b79039b7b7b760911b6044820152606401610a72565b6000818152600f602090815260408083206001600160a01b038616808552818452828520835180850190945280548452600181018054858701529186529190935283905590829055805160138054929391929091906113b5908490613e85565b909155505080516005546113d6916001600160a01b03909116908590612b04565b80516040516001600160a01b038516917f72d926b894af0cddcbb7e70b67142b7ba4a03a369f678e37baad34e288f435ff9161141a91868252602082015260400190565b60405180910390a2505050808061143090613f29565b9150506112bb565b5050611442612936565b50505050565b6000838152601260205260409020606090611464908484612d5c565b949350505050565b6000806000600d60009054906101000a90046001600160a01b03166001600160a01b031663d370f1d46040518163ffffffff1660e01b81526004016040805180830381865afa1580156114c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e791906141d5565b915091506000600d60009054906101000a90046001600160a01b03166001600160a01b031663d9cf36ba6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611540573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611564919061406c565b9050611571838383611c39565b935050505090565b600061158361276a565b600e546001600160a01b031633146115c55760405162461bcd60e51b815260206004820152600560248201526404282eae8d60db1b6044820152606401610a72565b60185442101561160e5760405162461bcd60e51b8152602060048201526014602482015273042a8d2daca40e0c2e6e640dccaee40cae0dec6d60631b6044820152606401610a72565b600d5460009081906001600160a01b031663e0dc175061162c611e50565b6040518263ffffffff1660e01b815260040161164a91815260200190565b6060604051808303816000875af1158015611669573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168d9190613ed2565b50915091506000600d60009054906101000a90046001600160a01b03166001600160a01b031663d9cf36ba6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170b919061406c565b90506000601754600161171e9190613f16565b600954909150600081810361174257600c5461173b90600a614043565b96506117b3565b6117918861174f87612e46565b61175889612e46565b87611769611764610a28565b612e46565b61177391906141f9565b61177d91906141f9565b6117879190614221565b6111f191906141f9565b9050816117a6670de0b6b3a764000083613f48565b6117b09190614248565b96505b601783905560198790556117c5611d90565b60185560408051848152602081018a905290810188905260608101829052608081018390527f7b504be1b0f48aaf364e873952fa4daf419806a7f85486cdb25d4a61f57f26f49060a00160405180910390a1505050505050611825612936565b919050565b61183261276a565b8281146118715760405162461bcd60e51b815260206004820152600d60248201526c2141727261794c656e6774687360981b6044820152606401610a72565b600d546001600160a01b031663e0dc175061188a611e50565b6040518263ffffffff1660e01b81526004016118a891815260200190565b6060604051808303816000875af11580156118c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118eb9190613ed2565b505050600060016017546118ff9190613e85565b905060005b60ff811685111561143857600086868360ff1681811061192657611926613f00565b905060200201602081019061193b9190613b39565b9050600085858460ff1681811061195457611954613f00565b9050602002013590508381111561199e5760405162461bcd60e51b815260206004820152600e60248201526d22b837b1b4103a37b79039b7b7b760911b6044820152606401610a72565b60008181526010602090815260408083206001600160a01b038616808552818452828520835160608101855281548152600182018054828801526002830180549683019687529388529390955285905590849055839055516014805492939192909190611a0c908490613e85565b90915550508051611a209030908590612b63565b80516040516001600160a01b038516917fd2733907f0171f7e5ccf8333680e9b6f29023e611aa0d8bfb6d295ac3cf44ccd91611a6491868252602082015260400190565b60405180910390a25050508080611a7a90613f29565b915050611904565b6000546001600160a01b03163314611aac5760405162461bcd60e51b8152600401610a7290614085565b6001600160a01b038116611af35760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69644164647265737360901b6044820152606401610a72565b600d80546001600160a01b0319166001600160a01b03831617905560015b6040516001600160a01b03831681527fdab6a10a2b64bf52b6d4f3921f6244f7e050c6a0bc35a77f81b42d0095248ee690602001611060565b600b8054610a9990613e98565b611b5f61276a565b6004805460408051635cecd5ff60e01b815290516001600160a01b0390921692635cecd5ff9282820192602092908290030181865afa158015611ba6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bca919061404f565b6001600160a01b0316336001600160a01b031614611c265760405162461bcd60e51b815260206004820152601960248201527810a634b8bab4b234ba3ca4b73a32b73a39ab32b934b334b2b960391b6044820152606401610a72565b611c31838383612e73565b611154612936565b600083600003611c4b57506000610ffb565b6000611c5784846111c8565b905080600003611c6c57600019915050610ffb565b80611c7f670de0b6b3a764000087613f48565b611c899190614248565b95945050505050565b6000838152601160205260409020606090611464908484612d5c565b6000610b27338484612b63565b611cc361276a565b601d5460ff1615611ce65760405162461bcd60e51b8152600401610a729061426a565b33611cf48186868686613109565b50611442612936565b6000546001600160a01b03163314611d275760405162461bcd60e51b8152600401610a7290614085565b6001600160a01b038116611d6e5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69644164647265737360901b6044820152606401610a72565b600e80546001600160a01b0319166001600160a01b0383161790556002611b11565b601c5460009081611da18242614248565b905081611daf826001613f16565b610a859190613f48565b6000610b2b601954836132f1565b6000546001600160a01b03163314611df15760405162461bcd60e51b8152600401610a7290614085565b601b8190556003611034565b611e0561276a565b33611e11818484612e73565b50610f52612936565b6000546001600160a01b03163314611e445760405162461bcd60e51b8152600401610a7290614085565b601a8190556002611034565b6000611f43600d60009054906101000a90046001600160a01b03166001600160a01b0316635dc70c776040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ea8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ecc919061406c565b600d60009054906101000a90046001600160a01b03166001600160a01b031663d9cf36ba6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610638919061406c565b905090565b600080600080611f5661276a565b600d546001600160a01b031663e0dc1750611f6f611e50565b6040518263ffffffff1660e01b8152600401611f8d91815260200190565b6060604051808303816000875af1158015611fac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd09190613ed2565b505060175460195490915060005b60ff8116881115612089576000806000612022868d8d8760ff1681811061200757612007613f00565b905060200201602081019061201c9190613b39565b87613310565b9250925092508261203557505050612077565b811561205957612045818b613f16565b9950612052600189613f16565b9750612073565b612063818a613f16565b9850612070600188613f16565b96505b5050505b8061208181613f29565b915050611fde565b506120948587613f16565b601360008282546120a59190613e85565b925050819055505050610ca9612936565b6011602052816000526040600020818154811061108757600080fd5b6000546001600160a01b031633146120fc5760405162461bcd60e51b8152600401610a7290614085565b60158190556001611034565b6004805460055460405163a8e36e5b60e01b81526001600160a01b03918216938101939093526000928392919091169063a8e36e5b90602401602060405180830381865afa15801561215e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612182919061404f565b6001600160a01b0316336001600160a01b0316146121d15760405162461bcd60e51b815260206004820152600c60248201526b10b332b2b9a6b0b730b3b2b960a11b6044820152606401610a72565b600d546001600160a01b031663e0dc17506121ea611e50565b6040518263ffffffff1660e01b815260040161220891815260200190565b6060604051808303816000875af1158015612227573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061224b9190613ed2565b5050600d546040805163083aeef360e11b815281516001600160a01b039093169350631075dde6926004808301939282900301816000875af1158015612295573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b991906141d5565b909250905060006122ca8284613f16565b905080156122e9576005546122e9906001600160a01b03168583612b04565b604080516001600160a01b0386168152602081018590529081018390527fcc6cda91f93e55c24ee945dedb481174398b780a07be27f9f420b5411a2590e49060600160405180910390a150915091565b6005546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612382573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f43919061406c565b6123ae61276a565b6004805460408051635cecd5ff60e01b815290516001600160a01b0390921692635cecd5ff9282820192602092908290030181865afa1580156123f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612419919061404f565b6001600160a01b0316336001600160a01b0316146124755760405162461bcd60e51b815260206004820152601960248201527810a634b8bab4b234ba3ca4b73a32b73a39ab32b934b334b2b960391b6044820152606401610a72565b601d5460ff16156124985760405162461bcd60e51b8152600401610a729061426a565b6124a58585858585613109565b6124ad612936565b5050505050565b6124bc61276a565b601d5460ff166124de5760405162461bcd60e51b8152600401610a729061426a565b60165483101561250657600b83604051632eb752bf60e21b8152600401610a7292919061428c565b600d546001600160a01b031663e0dc175061251f611e50565b6040518263ffffffff1660e01b815260040161253d91815260200190565b6060604051808303816000875af115801561255c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125809190613ed2565b503391506125909050818561343d565b600061259b85611db9565b90506125a78282613584565b60408051868152602081018390526001600160a01b038416917f44b0aec0c46855b77340001dff75f91304dea1799518c36af2d9bec5dae2738c910160405180910390a2816001600160a01b031683857f7ba502a6e8d9c35b8430a91efccdff6928f2e0aca8193f08d0e34c02ff51cbd688601754604051612633929190918252602082015260400190565b60405180910390a45050611154612936565b6001600160a01b0383166126a75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a72565b6001600160a01b0382166127085760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a72565b6001600160a01b0383811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6004805460408051637c1e845d60e11b815290516001600160a01b039092169263f83d08ba92828201926000929082900301818387803b1580156127ad57600080fd5b505af1158015611442573d6000803e3d6000fd5b60008381526010602090815260408083206001600160a01b03861684528252808320815160608101835281548082526001830154948201949094526002909101549181019190915282918291829182036128295760008060008094509450945094505061292d565b60008881526010602090815260408083206001600160a01b038b168452909152812081815560018181018390556002909101829055825190965061286e908890613663565b90506000818360400151106128835781612889565b82604001515b9050826020015181106128c4576128a4308460000151613678565b6005546128bb906001600160a01b03168a83612b04565b600195506128d8565b6128d3308a8560000151612b63565b600095505b8251604080850151815189151581526020810184905292975095506001600160a01b038b16917ff88a20f7519d20766db2ee9136f3dff5afe20494c2d786e0475f1d94af09c5ad910160405180910390a25050505b93509350935093565b60048054604080516340da020f60e01b815290516001600160a01b03909216926340da020f92828201926000929082900301818387803b1580156127ad57600080fd5b612a8b826001600160a01b03166395d89b416040518163ffffffff1660e01b8152600401600060405180830381865afa1580156129ba573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526129e291908101906142b8565b6040516020016129f29190614326565b604051602081830303815290604052836001600160a01b03166395d89b416040518163ffffffff1660e01b8152600401600060405180830381865afa158015612a3f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612a6791908101906142b8565b604051602001612a779190614356565b6040516020818303038152906040526110d9565b612a958383610cb2565b816001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ad3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af79190614380565b60ff16600c55601c555050565b6040516001600160a01b0383811660248301526044820183905261115491859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506137be565b6001600160a01b038316612bc75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a72565b6001600160a01b038216612c295760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a72565b6001600160a01b03831660009081526007602052604090205481811015612ca15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a72565b6001600160a01b03808516600090815260076020526040808220858503905591851681529081208054849290612cd8908490613f16565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d2491815260200190565b60405180910390a350505050565b600080821215612d5857604051635467221960e11b815260048101839052602401610a72565b5090565b8254606090600090612d6f908590613e85565b9050808310612d7e5780612d80565b825b92508267ffffffffffffffff811115612d9b57612d9b613b91565b604051908082528060200260200182016040528015612dc4578160200160208202803683370190505b50915060005b83811015612e3d5785612ddd8287613f16565b81548110612ded57612ded613f00565b9060005260206000200160009054906101000a90046001600160a01b0316838281518110612e1d57612e1d613f00565b6001600160a01b0390921660209283029190910190910152600101612dca565b50509392505050565b60006001600160ff1b03821115612d585760405163123baf0360e11b815260048101839052602401610a72565b6000601b54601754612e859190613f16565b6000818152600f602090815260408083206001600160a01b038916845290915290205490915015612ee95760405162461bcd60e51b815260206004820152600e60248201526d115e1a5cdd1cc819195c1bdcda5d60921b6044820152606401610a72565b600d546001600160a01b031663e0dc1750612f02611e50565b6040518263ffffffff1660e01b8152600401612f2091815260200190565b6060604051808303816000875af1158015612f3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f639190613ed2565b505050612f71843085612b63565b6019546000612f808286613663565b905080841115612fca5760405162461bcd60e51b815260206004820152601560248201527409ad2dc82dadeeadce89eeae840e8dede40d0d2ced605b1b6044820152606401610a72565b6000620186a0601554620186a0612fe19190613f16565b612feb9084613f48565b612ff59190614248565b905080601460008282546130099190613f16565b909155506130179050613821565b60008481526010602090815260408083206001600160a01b038b1684529091528120805490910361307a5760008581526012602090815260408220805460018101825590835291200180546001600160a01b0319166001600160a01b038a161790555b8054613087908890613f16565b81556001810154613099908790613f16565b600182015560028101546130ae908390613f16565b600282015560408051888152602081018890529081018690526001600160a01b038916907f69827d824993c5fce39851a711a15efc9b98133015a018c84f13340521e7adce9060600160405180910390a25050505050505050565b60165484101561313157600b84604051632eb752bf60e21b8152600401610a7292919061428c565b6000601a546017546131439190613f16565b60008181526010602090815260408083206001600160a01b038b168452909152902054909150156131a65760405162461bcd60e51b815260206004820152600d60248201526c52656465656d2065786973747360981b6044820152606401610a72565b6131b0868661343d565b84601360008282546131c29190613f16565b90915550506000818152600f602090815260408083206001600160a01b038a1684529091528120805490910361322a5760008281526011602090815260408220805460018101825590835291200180546001600160a01b0319166001600160a01b0389161790555b8054613237908790613f16565b81556001810154613249908690613f16565b600182015560408051878152602081018790529081018390526001600160a01b038816907f05204c412c9232d14ad1bb18ac9118f4a7e10c8a2d8eca85693d9388a6aac96b9060600160405180910390a2866001600160a01b031683857f7ba502a6e8d9c35b8430a91efccdff6928f2e0aca8193f08d0e34c02ff51cbd689866040516132e0929190918252602082015260400190565b60405180910390a450505050505050565b600082613306670de0b6b3a764000084613f48565b610ffb9190614248565b6000838152600f602090815260408083206001600160a01b0386168452825280832081518083019092528054808352600190910154928201929092528291829190820361336857600080600093509350935050613434565b6000878152600f602090815260408083206001600160a01b038a1684529091528120818155600190810182905582519095506133a59087906132f1565b9050816020015181106133c5576133bc8782613584565b600193506133e6565b81516005546133e1916001600160a01b03909116908990612b04565b600093505b8151604080518615158152602081018390529194506001600160a01b038916917fe0658942d1f815976a88ef2c4f1b8d5d0ff7f83c1cde078f60e39b08069bd55c910160405180910390a250505b93509350939050565b6005546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015613486573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134aa919061406c565b6005549091506134c5906001600160a01b0316843085613868565b6005546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561350e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613532919061406c565b90508261353f8383613e85565b146114425760405162461bcd60e51b815260206004820152601560248201527411125117d393d517d49150d152559157d1561050d5605a1b6044820152606401610a72565b6001600160a01b0382166135da5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a72565b80600960008282546135ec9190613f16565b90915550506001600160a01b03821660009081526007602052604081208054839290613619908490613f16565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000670de0b6b3a76400006133068484613f48565b6001600160a01b0382166136d85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a72565b6001600160a01b0382166000908152600760205260409020548181101561374c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a72565b6001600160a01b038316600090815260076020526040812083830390556009805484929061377b908490613e85565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161275d565b60006137d36001600160a01b038416836138a1565b905080516000141580156137f85750808060200190518101906137f691906143a3565b155b1561115457604051635274afe760e01b81526001600160a01b0384166004820152602401610a72565b613829610d3c565b6138665760405162461bcd60e51b815260206004820152600e60248201526d2628103aba34b634bd30ba34b7b760911b6044820152606401610a72565b565b6040516001600160a01b0384811660248301528381166044830152606482018390526114429186918216906323b872dd90608401612b31565b6060610ffb8383600084600080856001600160a01b031684866040516138c791906143c5565b60006040518083038185875af1925050503d8060008114613904576040519150601f19603f3d011682016040523d82523d6000602084013e613909565b606091505b50915091506112548683836060826139295761392482613970565b610ffb565b815115801561394057506001600160a01b0384163b155b1561396957604051639996b31560e01b81526001600160a01b0385166004820152602401610a72565b5080610ffb565b8051156139805780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b60005b838110156139b457818101518382015260200161399c565b50506000910152565b60208152600082518060208401526139dc816040850160208701613999565b601f01601f19169190910160400192915050565b6001600160a01b0381168114610ee957600080fd5b60008060408385031215613a1857600080fd5b8235613a23816139f0565b946020939093013593505050565b60008083601f840112613a4357600080fd5b50813567ffffffffffffffff811115613a5b57600080fd5b6020830191508360208260051b8501011115613a7657600080fd5b9250929050565b60008060208385031215613a9057600080fd5b823567ffffffffffffffff811115613aa757600080fd5b613ab385828601613a31565b90969095509350505050565b60008060408385031215613ad257600080fd5b8235613add816139f0565b91506020830135613aed816139f0565b809150509250929050565b600080600060608486031215613b0d57600080fd5b8335613b18816139f0565b92506020840135613b28816139f0565b929592945050506040919091013590565b600060208284031215613b4b57600080fd5b8135610ffb816139f0565b600060208284031215613b6857600080fd5b5035919050565b60008060408385031215613b8257600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613bd057613bd0613b91565b604052919050565b600067ffffffffffffffff821115613bf257613bf2613b91565b50601f01601f191660200190565b600082601f830112613c1157600080fd5b8135613c24613c1f82613bd8565b613ba7565b818152846020838601011115613c3957600080fd5b816020850160208301376000918101602001919091529392505050565b60008060408385031215613c6957600080fd5b823567ffffffffffffffff80821115613c8157600080fd5b613c8d86838701613c00565b93506020850135915080821115613ca357600080fd5b50613cb085828601613c00565b9150509250929050565b60008060008060408587031215613cd057600080fd5b843567ffffffffffffffff80821115613ce857600080fd5b613cf488838901613a31565b90965094506020870135915080821115613d0d57600080fd5b50613d1a87828801613a31565b95989497509550505050565b600080600060608486031215613d3b57600080fd5b505081359360208301359350604090920135919050565b6020808252825182820181905260009190848201906040850190845b81811015613d935783516001600160a01b031683529284019291840191600101613d6e565b50909695505050505050565b60008060408385031215613db257600080fd5b823591506020830135613aed816139f0565b600080600060608486031215613dd957600080fd5b8335613de4816139f0565b95602085013595506040909401359392505050565b60008060008060808587031215613e0f57600080fd5b5050823594602084013594506040840135936060013592509050565b600080600080600060a08688031215613e4357600080fd5b8535613e4e816139f0565b97602087013597506040870135966060810135965060800135945092505050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610b2b57610b2b613e6f565b600181811c90821680613eac57607f821691505b602082108103613ecc57634e487b7160e01b600052602260045260246000fd5b50919050565b600080600060608486031215613ee757600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b80820180821115610b2b57610b2b613e6f565b600060ff821660ff8103613f3f57613f3f613e6f565b60010192915050565b8082028115828204841417610b2b57610b2b613e6f565b600181815b80851115613f9a578160001904821115613f8057613f80613e6f565b80851615613f8d57918102915b93841c9390800290613f64565b509250929050565b600082613fb157506001610b2b565b81613fbe57506000610b2b565b8160018114613fd45760028114613fde57613ffa565b6001915050610b2b565b60ff841115613fef57613fef613e6f565b50506001821b610b2b565b5060208310610133831016604e8410600b841016171561401d575081810a610b2b565b6140278383613f5f565b806000190482111561403b5761403b613e6f565b029392505050565b6000610ffb8383613fa2565b60006020828403121561406157600080fd5b8151610ffb816139f0565b60006020828403121561407e57600080fd5b5051919050565b6020808252600a908201526927a7262cafa0a226a4a760b11b604082015260600190565b601f821115611154576000816000526020600020601f850160051c810160208610156140d25750805b601f850160051c820191505b818110156140f1578281556001016140de565b505050505050565b815167ffffffffffffffff81111561411357614113613b91565b614127816141218454613e98565b846140a9565b602080601f83116001811461415c57600084156141445750858301515b600019600386901b1c1916600185901b1785556140f1565b600085815260208120601f198616915b8281101561418b5788860151825594840194600190910190840161416c565b50858210156141a95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000600160ff1b82016141ce576141ce613e6f565b5060000390565b600080604083850312156141e857600080fd5b505080516020909101519092909150565b808201828112600083128015821682158216171561421957614219613e6f565b505092915050565b818103600083128015838313168383128216171561424157614241613e6f565b5092915050565b60008261426557634e487b7160e01b600052601260045260246000fd5b500490565b60208082526008908201526708505b1b1bddd95960c21b604082015260600190565b60408101601284106142ae57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b6000602082840312156142ca57600080fd5b815167ffffffffffffffff8111156142e157600080fd5b8201601f810184136142f257600080fd5b8051614300613c1f82613bd8565b81815285602083850101111561431557600080fd5b611c89826020830160208601613999565b670263cb73c102628160c51b815260008251614349816008850160208701613999565b9190910160080192915050565b610d8f60f31b815260008251614373816002850160208701613999565b9190910160020192915050565b60006020828403121561439257600080fd5b815160ff81168114610ffb57600080fd5b6000602082840312156143b557600080fd5b81518015158114610ffb57600080fd5b600082516143d7818460208701613999565b919091019291505056fea26469706673582212202ca8f0b0ccc72e102ac96004ad531d3f1eb7a480a68f8522c76ef498fed9a63564736f6c63430008180033";
|
|
18
|
+
static readonly abi: readonly [{
|
|
19
|
+
readonly inputs: readonly [{
|
|
20
|
+
readonly internalType: "address";
|
|
21
|
+
readonly name: "target";
|
|
22
|
+
readonly type: "address";
|
|
23
|
+
}];
|
|
24
|
+
readonly name: "AddressEmptyCode";
|
|
25
|
+
readonly type: "error";
|
|
26
|
+
}, {
|
|
27
|
+
readonly inputs: readonly [{
|
|
28
|
+
readonly internalType: "address";
|
|
29
|
+
readonly name: "account";
|
|
30
|
+
readonly type: "address";
|
|
31
|
+
}];
|
|
32
|
+
readonly name: "AddressInsufficientBalance";
|
|
33
|
+
readonly type: "error";
|
|
34
|
+
}, {
|
|
35
|
+
readonly inputs: readonly [{
|
|
36
|
+
readonly internalType: "enum LexErrors.CapType";
|
|
37
|
+
readonly name: "";
|
|
38
|
+
readonly type: "uint8";
|
|
39
|
+
}, {
|
|
40
|
+
readonly internalType: "uint256";
|
|
41
|
+
readonly name: "value";
|
|
42
|
+
readonly type: "uint256";
|
|
43
|
+
}];
|
|
44
|
+
readonly name: "CapError";
|
|
45
|
+
readonly type: "error";
|
|
46
|
+
}, {
|
|
47
|
+
readonly inputs: readonly [];
|
|
48
|
+
readonly name: "FailedInnerCall";
|
|
49
|
+
readonly type: "error";
|
|
50
|
+
}, {
|
|
51
|
+
readonly inputs: readonly [{
|
|
52
|
+
readonly internalType: "int256";
|
|
53
|
+
readonly name: "value";
|
|
54
|
+
readonly type: "int256";
|
|
55
|
+
}];
|
|
56
|
+
readonly name: "SafeCastOverflowedIntToUint";
|
|
57
|
+
readonly type: "error";
|
|
58
|
+
}, {
|
|
59
|
+
readonly inputs: readonly [{
|
|
60
|
+
readonly internalType: "uint256";
|
|
61
|
+
readonly name: "value";
|
|
62
|
+
readonly type: "uint256";
|
|
63
|
+
}];
|
|
64
|
+
readonly name: "SafeCastOverflowedUintToInt";
|
|
65
|
+
readonly type: "error";
|
|
66
|
+
}, {
|
|
67
|
+
readonly inputs: readonly [{
|
|
68
|
+
readonly internalType: "address";
|
|
69
|
+
readonly name: "token";
|
|
70
|
+
readonly type: "address";
|
|
71
|
+
}];
|
|
72
|
+
readonly name: "SafeERC20FailedOperation";
|
|
73
|
+
readonly type: "error";
|
|
74
|
+
}, {
|
|
75
|
+
readonly anonymous: false;
|
|
76
|
+
readonly inputs: readonly [{
|
|
77
|
+
readonly indexed: true;
|
|
78
|
+
readonly internalType: "enum LexPoolAdminEnums.LexPoolAddressesEnum";
|
|
79
|
+
readonly name: "enumCode";
|
|
80
|
+
readonly type: "uint8";
|
|
81
|
+
}, {
|
|
82
|
+
readonly indexed: false;
|
|
83
|
+
readonly internalType: "address";
|
|
84
|
+
readonly name: "a";
|
|
85
|
+
readonly type: "address";
|
|
86
|
+
}];
|
|
87
|
+
readonly name: "AddressUpdated";
|
|
88
|
+
readonly type: "event";
|
|
89
|
+
}, {
|
|
90
|
+
readonly anonymous: false;
|
|
91
|
+
readonly inputs: readonly [{
|
|
92
|
+
readonly indexed: true;
|
|
93
|
+
readonly internalType: "address";
|
|
94
|
+
readonly name: "owner";
|
|
95
|
+
readonly type: "address";
|
|
96
|
+
}, {
|
|
97
|
+
readonly indexed: true;
|
|
98
|
+
readonly internalType: "address";
|
|
99
|
+
readonly name: "spender";
|
|
100
|
+
readonly type: "address";
|
|
101
|
+
}, {
|
|
102
|
+
readonly indexed: false;
|
|
103
|
+
readonly internalType: "uint256";
|
|
104
|
+
readonly name: "value";
|
|
105
|
+
readonly type: "uint256";
|
|
106
|
+
}];
|
|
107
|
+
readonly name: "Approval";
|
|
108
|
+
readonly type: "event";
|
|
109
|
+
}, {
|
|
110
|
+
readonly anonymous: false;
|
|
111
|
+
readonly inputs: readonly [{
|
|
112
|
+
readonly indexed: true;
|
|
113
|
+
readonly internalType: "address";
|
|
114
|
+
readonly name: "user";
|
|
115
|
+
readonly type: "address";
|
|
116
|
+
}, {
|
|
117
|
+
readonly indexed: false;
|
|
118
|
+
readonly internalType: "uint256";
|
|
119
|
+
readonly name: "epoch";
|
|
120
|
+
readonly type: "uint256";
|
|
121
|
+
}, {
|
|
122
|
+
readonly indexed: false;
|
|
123
|
+
readonly internalType: "uint256";
|
|
124
|
+
readonly name: "cancelledAmount";
|
|
125
|
+
readonly type: "uint256";
|
|
126
|
+
}];
|
|
127
|
+
readonly name: "CanceledDeposit";
|
|
128
|
+
readonly type: "event";
|
|
129
|
+
}, {
|
|
130
|
+
readonly anonymous: false;
|
|
131
|
+
readonly inputs: readonly [{
|
|
132
|
+
readonly indexed: true;
|
|
133
|
+
readonly internalType: "address";
|
|
134
|
+
readonly name: "user";
|
|
135
|
+
readonly type: "address";
|
|
136
|
+
}, {
|
|
137
|
+
readonly indexed: false;
|
|
138
|
+
readonly internalType: "uint256";
|
|
139
|
+
readonly name: "epoch";
|
|
140
|
+
readonly type: "uint256";
|
|
141
|
+
}, {
|
|
142
|
+
readonly indexed: false;
|
|
143
|
+
readonly internalType: "uint256";
|
|
144
|
+
readonly name: "cancelledAmount";
|
|
145
|
+
readonly type: "uint256";
|
|
146
|
+
}];
|
|
147
|
+
readonly name: "CanceledRedeem";
|
|
148
|
+
readonly type: "event";
|
|
149
|
+
}, {
|
|
150
|
+
readonly anonymous: false;
|
|
151
|
+
readonly inputs: readonly [{
|
|
152
|
+
readonly indexed: true;
|
|
153
|
+
readonly internalType: "address";
|
|
154
|
+
readonly name: "user";
|
|
155
|
+
readonly type: "address";
|
|
156
|
+
}, {
|
|
157
|
+
readonly indexed: false;
|
|
158
|
+
readonly internalType: "uint256";
|
|
159
|
+
readonly name: "amount";
|
|
160
|
+
readonly type: "uint256";
|
|
161
|
+
}, {
|
|
162
|
+
readonly indexed: false;
|
|
163
|
+
readonly internalType: "uint256";
|
|
164
|
+
readonly name: "minAmountOut";
|
|
165
|
+
readonly type: "uint256";
|
|
166
|
+
}, {
|
|
167
|
+
readonly indexed: false;
|
|
168
|
+
readonly internalType: "uint256";
|
|
169
|
+
readonly name: "processingEpoch";
|
|
170
|
+
readonly type: "uint256";
|
|
171
|
+
}];
|
|
172
|
+
readonly name: "DepositRequest";
|
|
173
|
+
readonly type: "event";
|
|
174
|
+
}, {
|
|
175
|
+
readonly anonymous: false;
|
|
176
|
+
readonly inputs: readonly [{
|
|
177
|
+
readonly indexed: true;
|
|
178
|
+
readonly internalType: "address";
|
|
179
|
+
readonly name: "depositor";
|
|
180
|
+
readonly type: "address";
|
|
181
|
+
}, {
|
|
182
|
+
readonly indexed: false;
|
|
183
|
+
readonly internalType: "uint256";
|
|
184
|
+
readonly name: "depositAmount";
|
|
185
|
+
readonly type: "uint256";
|
|
186
|
+
}, {
|
|
187
|
+
readonly indexed: false;
|
|
188
|
+
readonly internalType: "uint256";
|
|
189
|
+
readonly name: "mintAmount";
|
|
190
|
+
readonly type: "uint256";
|
|
191
|
+
}];
|
|
192
|
+
readonly name: "ImmediateDeposit";
|
|
193
|
+
readonly type: "event";
|
|
194
|
+
}, {
|
|
195
|
+
readonly anonymous: false;
|
|
196
|
+
readonly inputs: readonly [{
|
|
197
|
+
readonly indexed: true;
|
|
198
|
+
readonly internalType: "bool";
|
|
199
|
+
readonly name: "value";
|
|
200
|
+
readonly type: "bool";
|
|
201
|
+
}];
|
|
202
|
+
readonly name: "ImmediateDepositAllowedToggled";
|
|
203
|
+
readonly type: "event";
|
|
204
|
+
}, {
|
|
205
|
+
readonly anonymous: false;
|
|
206
|
+
readonly inputs: readonly [{
|
|
207
|
+
readonly indexed: true;
|
|
208
|
+
readonly internalType: "bytes32";
|
|
209
|
+
readonly name: "domain";
|
|
210
|
+
readonly type: "bytes32";
|
|
211
|
+
}, {
|
|
212
|
+
readonly indexed: true;
|
|
213
|
+
readonly internalType: "bytes32";
|
|
214
|
+
readonly name: "referralCode";
|
|
215
|
+
readonly type: "bytes32";
|
|
216
|
+
}, {
|
|
217
|
+
readonly indexed: true;
|
|
218
|
+
readonly internalType: "address";
|
|
219
|
+
readonly name: "user";
|
|
220
|
+
readonly type: "address";
|
|
221
|
+
}, {
|
|
222
|
+
readonly indexed: false;
|
|
223
|
+
readonly internalType: "uint256";
|
|
224
|
+
readonly name: "amountUnderlying";
|
|
225
|
+
readonly type: "uint256";
|
|
226
|
+
}, {
|
|
227
|
+
readonly indexed: false;
|
|
228
|
+
readonly internalType: "uint256";
|
|
229
|
+
readonly name: "processingEpoch";
|
|
230
|
+
readonly type: "uint256";
|
|
231
|
+
}];
|
|
232
|
+
readonly name: "LiquidityProvided";
|
|
233
|
+
readonly type: "event";
|
|
234
|
+
}, {
|
|
235
|
+
readonly anonymous: false;
|
|
236
|
+
readonly inputs: readonly [{
|
|
237
|
+
readonly indexed: false;
|
|
238
|
+
readonly internalType: "uint256";
|
|
239
|
+
readonly name: "epochId";
|
|
240
|
+
readonly type: "uint256";
|
|
241
|
+
}, {
|
|
242
|
+
readonly indexed: false;
|
|
243
|
+
readonly internalType: "int256";
|
|
244
|
+
readonly name: "reportedUnrealizedPricePnL";
|
|
245
|
+
readonly type: "int256";
|
|
246
|
+
}, {
|
|
247
|
+
readonly indexed: false;
|
|
248
|
+
readonly internalType: "uint256";
|
|
249
|
+
readonly name: "exchangeRate";
|
|
250
|
+
readonly type: "uint256";
|
|
251
|
+
}, {
|
|
252
|
+
readonly indexed: false;
|
|
253
|
+
readonly internalType: "uint256";
|
|
254
|
+
readonly name: "virtualUnderlyingBalance";
|
|
255
|
+
readonly type: "uint256";
|
|
256
|
+
}, {
|
|
257
|
+
readonly indexed: false;
|
|
258
|
+
readonly internalType: "uint256";
|
|
259
|
+
readonly name: "totalSupply";
|
|
260
|
+
readonly type: "uint256";
|
|
261
|
+
}];
|
|
262
|
+
readonly name: "NewEpoch";
|
|
263
|
+
readonly type: "event";
|
|
264
|
+
}, {
|
|
265
|
+
readonly anonymous: false;
|
|
266
|
+
readonly inputs: readonly [{
|
|
267
|
+
readonly indexed: true;
|
|
268
|
+
readonly internalType: "enum LexPoolAdminEnums.LexPoolNumbersEnum";
|
|
269
|
+
readonly name: "enumCode";
|
|
270
|
+
readonly type: "uint8";
|
|
271
|
+
}, {
|
|
272
|
+
readonly indexed: false;
|
|
273
|
+
readonly internalType: "uint256";
|
|
274
|
+
readonly name: "value";
|
|
275
|
+
readonly type: "uint256";
|
|
276
|
+
}];
|
|
277
|
+
readonly name: "NumberUpdated";
|
|
278
|
+
readonly type: "event";
|
|
279
|
+
}, {
|
|
280
|
+
readonly anonymous: false;
|
|
281
|
+
readonly inputs: readonly [{
|
|
282
|
+
readonly indexed: true;
|
|
283
|
+
readonly internalType: "bytes32";
|
|
284
|
+
readonly name: "domain";
|
|
285
|
+
readonly type: "bytes32";
|
|
286
|
+
}, {
|
|
287
|
+
readonly indexed: true;
|
|
288
|
+
readonly internalType: "bytes32";
|
|
289
|
+
readonly name: "referralCode";
|
|
290
|
+
readonly type: "bytes32";
|
|
291
|
+
}, {
|
|
292
|
+
readonly indexed: true;
|
|
293
|
+
readonly internalType: "bytes32";
|
|
294
|
+
readonly name: "positionId";
|
|
295
|
+
readonly type: "bytes32";
|
|
296
|
+
}];
|
|
297
|
+
readonly name: "PositionRequested";
|
|
298
|
+
readonly type: "event";
|
|
299
|
+
}, {
|
|
300
|
+
readonly anonymous: false;
|
|
301
|
+
readonly inputs: readonly [{
|
|
302
|
+
readonly indexed: true;
|
|
303
|
+
readonly internalType: "address";
|
|
304
|
+
readonly name: "user";
|
|
305
|
+
readonly type: "address";
|
|
306
|
+
}, {
|
|
307
|
+
readonly indexed: false;
|
|
308
|
+
readonly internalType: "bool";
|
|
309
|
+
readonly name: "deposited";
|
|
310
|
+
readonly type: "bool";
|
|
311
|
+
}, {
|
|
312
|
+
readonly indexed: false;
|
|
313
|
+
readonly internalType: "uint256";
|
|
314
|
+
readonly name: "depositedAmount";
|
|
315
|
+
readonly type: "uint256";
|
|
316
|
+
}];
|
|
317
|
+
readonly name: "ProcessedDeposit";
|
|
318
|
+
readonly type: "event";
|
|
319
|
+
}, {
|
|
320
|
+
readonly anonymous: false;
|
|
321
|
+
readonly inputs: readonly [{
|
|
322
|
+
readonly indexed: true;
|
|
323
|
+
readonly internalType: "address";
|
|
324
|
+
readonly name: "user";
|
|
325
|
+
readonly type: "address";
|
|
326
|
+
}, {
|
|
327
|
+
readonly indexed: false;
|
|
328
|
+
readonly internalType: "bool";
|
|
329
|
+
readonly name: "redeemed";
|
|
330
|
+
readonly type: "bool";
|
|
331
|
+
}, {
|
|
332
|
+
readonly indexed: false;
|
|
333
|
+
readonly internalType: "uint256";
|
|
334
|
+
readonly name: "withdrawnAmount";
|
|
335
|
+
readonly type: "uint256";
|
|
336
|
+
}];
|
|
337
|
+
readonly name: "ProcessedRedeem";
|
|
338
|
+
readonly type: "event";
|
|
339
|
+
}, {
|
|
340
|
+
readonly anonymous: false;
|
|
341
|
+
readonly inputs: readonly [{
|
|
342
|
+
readonly indexed: true;
|
|
343
|
+
readonly internalType: "address";
|
|
344
|
+
readonly name: "user";
|
|
345
|
+
readonly type: "address";
|
|
346
|
+
}, {
|
|
347
|
+
readonly indexed: false;
|
|
348
|
+
readonly internalType: "uint256";
|
|
349
|
+
readonly name: "amount";
|
|
350
|
+
readonly type: "uint256";
|
|
351
|
+
}, {
|
|
352
|
+
readonly indexed: false;
|
|
353
|
+
readonly internalType: "uint256";
|
|
354
|
+
readonly name: "minAmountOut";
|
|
355
|
+
readonly type: "uint256";
|
|
356
|
+
}, {
|
|
357
|
+
readonly indexed: false;
|
|
358
|
+
readonly internalType: "uint256";
|
|
359
|
+
readonly name: "processingEpoch";
|
|
360
|
+
readonly type: "uint256";
|
|
361
|
+
}];
|
|
362
|
+
readonly name: "RedeemRequest";
|
|
363
|
+
readonly type: "event";
|
|
364
|
+
}, {
|
|
365
|
+
readonly anonymous: false;
|
|
366
|
+
readonly inputs: readonly [{
|
|
367
|
+
readonly indexed: false;
|
|
368
|
+
readonly internalType: "address";
|
|
369
|
+
readonly name: "_to";
|
|
370
|
+
readonly type: "address";
|
|
371
|
+
}, {
|
|
372
|
+
readonly indexed: false;
|
|
373
|
+
readonly internalType: "uint256";
|
|
374
|
+
readonly name: "interestShare";
|
|
375
|
+
readonly type: "uint256";
|
|
376
|
+
}, {
|
|
377
|
+
readonly indexed: false;
|
|
378
|
+
readonly internalType: "uint256";
|
|
379
|
+
readonly name: "totalFundingShare";
|
|
380
|
+
readonly type: "uint256";
|
|
381
|
+
}];
|
|
382
|
+
readonly name: "ReservesWithdrawn";
|
|
383
|
+
readonly type: "event";
|
|
384
|
+
}, {
|
|
385
|
+
readonly anonymous: false;
|
|
386
|
+
readonly inputs: readonly [{
|
|
387
|
+
readonly indexed: true;
|
|
388
|
+
readonly internalType: "address";
|
|
389
|
+
readonly name: "from";
|
|
390
|
+
readonly type: "address";
|
|
391
|
+
}, {
|
|
392
|
+
readonly indexed: true;
|
|
393
|
+
readonly internalType: "address";
|
|
394
|
+
readonly name: "to";
|
|
395
|
+
readonly type: "address";
|
|
396
|
+
}, {
|
|
397
|
+
readonly indexed: false;
|
|
398
|
+
readonly internalType: "uint256";
|
|
399
|
+
readonly name: "value";
|
|
400
|
+
readonly type: "uint256";
|
|
401
|
+
}];
|
|
402
|
+
readonly name: "Transfer";
|
|
403
|
+
readonly type: "event";
|
|
404
|
+
}, {
|
|
405
|
+
readonly inputs: readonly [];
|
|
406
|
+
readonly name: "ACCURACY_IMPROVEMENT_SCALE";
|
|
407
|
+
readonly outputs: readonly [{
|
|
408
|
+
readonly internalType: "uint256";
|
|
409
|
+
readonly name: "";
|
|
410
|
+
readonly type: "uint256";
|
|
411
|
+
}];
|
|
412
|
+
readonly stateMutability: "view";
|
|
413
|
+
readonly type: "function";
|
|
414
|
+
}, {
|
|
415
|
+
readonly inputs: readonly [];
|
|
416
|
+
readonly name: "FRACTION_SCALE";
|
|
417
|
+
readonly outputs: readonly [{
|
|
418
|
+
readonly internalType: "uint256";
|
|
419
|
+
readonly name: "";
|
|
420
|
+
readonly type: "uint256";
|
|
421
|
+
}];
|
|
422
|
+
readonly stateMutability: "view";
|
|
423
|
+
readonly type: "function";
|
|
424
|
+
}, {
|
|
425
|
+
readonly inputs: readonly [];
|
|
426
|
+
readonly name: "LEVERAGE_SCALE";
|
|
427
|
+
readonly outputs: readonly [{
|
|
428
|
+
readonly internalType: "uint256";
|
|
429
|
+
readonly name: "";
|
|
430
|
+
readonly type: "uint256";
|
|
431
|
+
}];
|
|
432
|
+
readonly stateMutability: "view";
|
|
433
|
+
readonly type: "function";
|
|
434
|
+
}, {
|
|
435
|
+
readonly inputs: readonly [];
|
|
436
|
+
readonly name: "PRECISION";
|
|
437
|
+
readonly outputs: readonly [{
|
|
438
|
+
readonly internalType: "uint256";
|
|
439
|
+
readonly name: "";
|
|
440
|
+
readonly type: "uint256";
|
|
441
|
+
}];
|
|
442
|
+
readonly stateMutability: "view";
|
|
443
|
+
readonly type: "function";
|
|
444
|
+
}, {
|
|
445
|
+
readonly inputs: readonly [];
|
|
446
|
+
readonly name: "SELF_UNIT_SCALE";
|
|
447
|
+
readonly outputs: readonly [{
|
|
448
|
+
readonly internalType: "uint256";
|
|
449
|
+
readonly name: "";
|
|
450
|
+
readonly type: "uint256";
|
|
451
|
+
}];
|
|
452
|
+
readonly stateMutability: "view";
|
|
453
|
+
readonly type: "function";
|
|
454
|
+
}, {
|
|
455
|
+
readonly inputs: readonly [{
|
|
456
|
+
readonly internalType: "contract LexPoolProxy";
|
|
457
|
+
readonly name: "proxy";
|
|
458
|
+
readonly type: "address";
|
|
459
|
+
}];
|
|
460
|
+
readonly name: "_become";
|
|
461
|
+
readonly outputs: readonly [];
|
|
462
|
+
readonly stateMutability: "nonpayable";
|
|
463
|
+
readonly type: "function";
|
|
464
|
+
}, {
|
|
465
|
+
readonly inputs: readonly [];
|
|
466
|
+
readonly name: "admin";
|
|
467
|
+
readonly outputs: readonly [{
|
|
468
|
+
readonly internalType: "address";
|
|
469
|
+
readonly name: "";
|
|
470
|
+
readonly type: "address";
|
|
471
|
+
}];
|
|
472
|
+
readonly stateMutability: "view";
|
|
473
|
+
readonly type: "function";
|
|
474
|
+
}, {
|
|
475
|
+
readonly inputs: readonly [{
|
|
476
|
+
readonly internalType: "address";
|
|
477
|
+
readonly name: "owner";
|
|
478
|
+
readonly type: "address";
|
|
479
|
+
}, {
|
|
480
|
+
readonly internalType: "address";
|
|
481
|
+
readonly name: "spender";
|
|
482
|
+
readonly type: "address";
|
|
483
|
+
}];
|
|
484
|
+
readonly name: "allowance";
|
|
485
|
+
readonly outputs: readonly [{
|
|
486
|
+
readonly internalType: "uint256";
|
|
487
|
+
readonly name: "";
|
|
488
|
+
readonly type: "uint256";
|
|
489
|
+
}];
|
|
490
|
+
readonly stateMutability: "view";
|
|
491
|
+
readonly type: "function";
|
|
492
|
+
}, {
|
|
493
|
+
readonly inputs: readonly [{
|
|
494
|
+
readonly internalType: "address";
|
|
495
|
+
readonly name: "spender";
|
|
496
|
+
readonly type: "address";
|
|
497
|
+
}, {
|
|
498
|
+
readonly internalType: "uint256";
|
|
499
|
+
readonly name: "amount";
|
|
500
|
+
readonly type: "uint256";
|
|
501
|
+
}];
|
|
502
|
+
readonly name: "approve";
|
|
503
|
+
readonly outputs: readonly [{
|
|
504
|
+
readonly internalType: "bool";
|
|
505
|
+
readonly name: "";
|
|
506
|
+
readonly type: "bool";
|
|
507
|
+
}];
|
|
508
|
+
readonly stateMutability: "nonpayable";
|
|
509
|
+
readonly type: "function";
|
|
510
|
+
}, {
|
|
511
|
+
readonly inputs: readonly [{
|
|
512
|
+
readonly internalType: "address";
|
|
513
|
+
readonly name: "account";
|
|
514
|
+
readonly type: "address";
|
|
515
|
+
}];
|
|
516
|
+
readonly name: "balanceOf";
|
|
517
|
+
readonly outputs: readonly [{
|
|
518
|
+
readonly internalType: "uint256";
|
|
519
|
+
readonly name: "";
|
|
520
|
+
readonly type: "uint256";
|
|
521
|
+
}];
|
|
522
|
+
readonly stateMutability: "view";
|
|
523
|
+
readonly type: "function";
|
|
524
|
+
}, {
|
|
525
|
+
readonly inputs: readonly [];
|
|
526
|
+
readonly name: "calcNextEpochStartMin";
|
|
527
|
+
readonly outputs: readonly [{
|
|
528
|
+
readonly internalType: "uint256";
|
|
529
|
+
readonly name: "";
|
|
530
|
+
readonly type: "uint256";
|
|
531
|
+
}];
|
|
532
|
+
readonly stateMutability: "view";
|
|
533
|
+
readonly type: "function";
|
|
534
|
+
}, {
|
|
535
|
+
readonly inputs: readonly [{
|
|
536
|
+
readonly internalType: "address[]";
|
|
537
|
+
readonly name: "users";
|
|
538
|
+
readonly type: "address[]";
|
|
539
|
+
}, {
|
|
540
|
+
readonly internalType: "uint256[]";
|
|
541
|
+
readonly name: "epochs";
|
|
542
|
+
readonly type: "uint256[]";
|
|
543
|
+
}];
|
|
544
|
+
readonly name: "cancelDeposits";
|
|
545
|
+
readonly outputs: readonly [];
|
|
546
|
+
readonly stateMutability: "nonpayable";
|
|
547
|
+
readonly type: "function";
|
|
548
|
+
}, {
|
|
549
|
+
readonly inputs: readonly [{
|
|
550
|
+
readonly internalType: "address[]";
|
|
551
|
+
readonly name: "users";
|
|
552
|
+
readonly type: "address[]";
|
|
553
|
+
}, {
|
|
554
|
+
readonly internalType: "uint256[]";
|
|
555
|
+
readonly name: "epochs";
|
|
556
|
+
readonly type: "uint256[]";
|
|
557
|
+
}];
|
|
558
|
+
readonly name: "cancelRedeems";
|
|
559
|
+
readonly outputs: readonly [];
|
|
560
|
+
readonly stateMutability: "nonpayable";
|
|
561
|
+
readonly type: "function";
|
|
562
|
+
}, {
|
|
563
|
+
readonly inputs: readonly [];
|
|
564
|
+
readonly name: "currentBalanceInternal";
|
|
565
|
+
readonly outputs: readonly [{
|
|
566
|
+
readonly internalType: "uint256";
|
|
567
|
+
readonly name: "";
|
|
568
|
+
readonly type: "uint256";
|
|
569
|
+
}];
|
|
570
|
+
readonly stateMutability: "view";
|
|
571
|
+
readonly type: "function";
|
|
572
|
+
}, {
|
|
573
|
+
readonly inputs: readonly [];
|
|
574
|
+
readonly name: "currentEpoch";
|
|
575
|
+
readonly outputs: readonly [{
|
|
576
|
+
readonly internalType: "uint256";
|
|
577
|
+
readonly name: "";
|
|
578
|
+
readonly type: "uint256";
|
|
579
|
+
}];
|
|
580
|
+
readonly stateMutability: "view";
|
|
581
|
+
readonly type: "function";
|
|
582
|
+
}, {
|
|
583
|
+
readonly inputs: readonly [];
|
|
584
|
+
readonly name: "currentExchangeRate";
|
|
585
|
+
readonly outputs: readonly [{
|
|
586
|
+
readonly internalType: "uint256";
|
|
587
|
+
readonly name: "";
|
|
588
|
+
readonly type: "uint256";
|
|
589
|
+
}];
|
|
590
|
+
readonly stateMutability: "view";
|
|
591
|
+
readonly type: "function";
|
|
592
|
+
}, {
|
|
593
|
+
readonly inputs: readonly [];
|
|
594
|
+
readonly name: "currentVirtualUtilization";
|
|
595
|
+
readonly outputs: readonly [{
|
|
596
|
+
readonly internalType: "uint256";
|
|
597
|
+
readonly name: "";
|
|
598
|
+
readonly type: "uint256";
|
|
599
|
+
}];
|
|
600
|
+
readonly stateMutability: "view";
|
|
601
|
+
readonly type: "function";
|
|
602
|
+
}, {
|
|
603
|
+
readonly inputs: readonly [{
|
|
604
|
+
readonly internalType: "uint256";
|
|
605
|
+
readonly name: "totalBorrows";
|
|
606
|
+
readonly type: "uint256";
|
|
607
|
+
}, {
|
|
608
|
+
readonly internalType: "uint256";
|
|
609
|
+
readonly name: "interestShare";
|
|
610
|
+
readonly type: "uint256";
|
|
611
|
+
}, {
|
|
612
|
+
readonly internalType: "int256";
|
|
613
|
+
readonly name: "unrealizedFunding";
|
|
614
|
+
readonly type: "int256";
|
|
615
|
+
}];
|
|
616
|
+
readonly name: "currentVirtualUtilization";
|
|
617
|
+
readonly outputs: readonly [{
|
|
618
|
+
readonly internalType: "uint256";
|
|
619
|
+
readonly name: "";
|
|
620
|
+
readonly type: "uint256";
|
|
621
|
+
}];
|
|
622
|
+
readonly stateMutability: "view";
|
|
623
|
+
readonly type: "function";
|
|
624
|
+
}, {
|
|
625
|
+
readonly inputs: readonly [];
|
|
626
|
+
readonly name: "decimals";
|
|
627
|
+
readonly outputs: readonly [{
|
|
628
|
+
readonly internalType: "uint8";
|
|
629
|
+
readonly name: "";
|
|
630
|
+
readonly type: "uint8";
|
|
631
|
+
}];
|
|
632
|
+
readonly stateMutability: "pure";
|
|
633
|
+
readonly type: "function";
|
|
634
|
+
}, {
|
|
635
|
+
readonly inputs: readonly [];
|
|
636
|
+
readonly name: "epochDuration";
|
|
637
|
+
readonly outputs: readonly [{
|
|
638
|
+
readonly internalType: "uint256";
|
|
639
|
+
readonly name: "";
|
|
640
|
+
readonly type: "uint256";
|
|
641
|
+
}];
|
|
642
|
+
readonly stateMutability: "view";
|
|
643
|
+
readonly type: "function";
|
|
644
|
+
}, {
|
|
645
|
+
readonly inputs: readonly [];
|
|
646
|
+
readonly name: "epochsDelayDeposit";
|
|
647
|
+
readonly outputs: readonly [{
|
|
648
|
+
readonly internalType: "uint256";
|
|
649
|
+
readonly name: "";
|
|
650
|
+
readonly type: "uint256";
|
|
651
|
+
}];
|
|
652
|
+
readonly stateMutability: "view";
|
|
653
|
+
readonly type: "function";
|
|
654
|
+
}, {
|
|
655
|
+
readonly inputs: readonly [];
|
|
656
|
+
readonly name: "epochsDelayRedeem";
|
|
657
|
+
readonly outputs: readonly [{
|
|
658
|
+
readonly internalType: "uint256";
|
|
659
|
+
readonly name: "";
|
|
660
|
+
readonly type: "uint256";
|
|
661
|
+
}];
|
|
662
|
+
readonly stateMutability: "view";
|
|
663
|
+
readonly type: "function";
|
|
664
|
+
}, {
|
|
665
|
+
readonly inputs: readonly [{
|
|
666
|
+
readonly internalType: "uint256";
|
|
667
|
+
readonly name: "epoch";
|
|
668
|
+
readonly type: "uint256";
|
|
669
|
+
}, {
|
|
670
|
+
readonly internalType: "uint256";
|
|
671
|
+
readonly name: "indexFrom";
|
|
672
|
+
readonly type: "uint256";
|
|
673
|
+
}, {
|
|
674
|
+
readonly internalType: "uint256";
|
|
675
|
+
readonly name: "count";
|
|
676
|
+
readonly type: "uint256";
|
|
677
|
+
}];
|
|
678
|
+
readonly name: "getDepositors";
|
|
679
|
+
readonly outputs: readonly [{
|
|
680
|
+
readonly internalType: "address[]";
|
|
681
|
+
readonly name: "depositors";
|
|
682
|
+
readonly type: "address[]";
|
|
683
|
+
}];
|
|
684
|
+
readonly stateMutability: "view";
|
|
685
|
+
readonly type: "function";
|
|
686
|
+
}, {
|
|
687
|
+
readonly inputs: readonly [{
|
|
688
|
+
readonly internalType: "uint256";
|
|
689
|
+
readonly name: "epoch";
|
|
690
|
+
readonly type: "uint256";
|
|
691
|
+
}];
|
|
692
|
+
readonly name: "getDepositorsCount";
|
|
693
|
+
readonly outputs: readonly [{
|
|
694
|
+
readonly internalType: "uint256";
|
|
695
|
+
readonly name: "";
|
|
696
|
+
readonly type: "uint256";
|
|
697
|
+
}];
|
|
698
|
+
readonly stateMutability: "view";
|
|
699
|
+
readonly type: "function";
|
|
700
|
+
}, {
|
|
701
|
+
readonly inputs: readonly [{
|
|
702
|
+
readonly internalType: "uint256";
|
|
703
|
+
readonly name: "epoch";
|
|
704
|
+
readonly type: "uint256";
|
|
705
|
+
}, {
|
|
706
|
+
readonly internalType: "uint256";
|
|
707
|
+
readonly name: "indexFrom";
|
|
708
|
+
readonly type: "uint256";
|
|
709
|
+
}, {
|
|
710
|
+
readonly internalType: "uint256";
|
|
711
|
+
readonly name: "count";
|
|
712
|
+
readonly type: "uint256";
|
|
713
|
+
}];
|
|
714
|
+
readonly name: "getRedeemers";
|
|
715
|
+
readonly outputs: readonly [{
|
|
716
|
+
readonly internalType: "address[]";
|
|
717
|
+
readonly name: "redeemers";
|
|
718
|
+
readonly type: "address[]";
|
|
719
|
+
}];
|
|
720
|
+
readonly stateMutability: "view";
|
|
721
|
+
readonly type: "function";
|
|
722
|
+
}, {
|
|
723
|
+
readonly inputs: readonly [{
|
|
724
|
+
readonly internalType: "uint256";
|
|
725
|
+
readonly name: "epoch";
|
|
726
|
+
readonly type: "uint256";
|
|
727
|
+
}];
|
|
728
|
+
readonly name: "getRedeemersCount";
|
|
729
|
+
readonly outputs: readonly [{
|
|
730
|
+
readonly internalType: "uint256";
|
|
731
|
+
readonly name: "";
|
|
732
|
+
readonly type: "uint256";
|
|
733
|
+
}];
|
|
734
|
+
readonly stateMutability: "view";
|
|
735
|
+
readonly type: "function";
|
|
736
|
+
}, {
|
|
737
|
+
readonly inputs: readonly [{
|
|
738
|
+
readonly internalType: "uint256";
|
|
739
|
+
readonly name: "depositAmount";
|
|
740
|
+
readonly type: "uint256";
|
|
741
|
+
}, {
|
|
742
|
+
readonly internalType: "bytes32";
|
|
743
|
+
readonly name: "domain";
|
|
744
|
+
readonly type: "bytes32";
|
|
745
|
+
}, {
|
|
746
|
+
readonly internalType: "bytes32";
|
|
747
|
+
readonly name: "referralCode";
|
|
748
|
+
readonly type: "bytes32";
|
|
749
|
+
}];
|
|
750
|
+
readonly name: "immediateDeposit";
|
|
751
|
+
readonly outputs: readonly [];
|
|
752
|
+
readonly stateMutability: "nonpayable";
|
|
753
|
+
readonly type: "function";
|
|
754
|
+
}, {
|
|
755
|
+
readonly inputs: readonly [];
|
|
756
|
+
readonly name: "immediateDepositAllowed";
|
|
757
|
+
readonly outputs: readonly [{
|
|
758
|
+
readonly internalType: "bool";
|
|
759
|
+
readonly name: "";
|
|
760
|
+
readonly type: "bool";
|
|
761
|
+
}];
|
|
762
|
+
readonly stateMutability: "view";
|
|
763
|
+
readonly type: "function";
|
|
764
|
+
}, {
|
|
765
|
+
readonly inputs: readonly [];
|
|
766
|
+
readonly name: "implementation";
|
|
767
|
+
readonly outputs: readonly [{
|
|
768
|
+
readonly internalType: "address";
|
|
769
|
+
readonly name: "";
|
|
770
|
+
readonly type: "address";
|
|
771
|
+
}];
|
|
772
|
+
readonly stateMutability: "view";
|
|
773
|
+
readonly type: "function";
|
|
774
|
+
}, {
|
|
775
|
+
readonly inputs: readonly [{
|
|
776
|
+
readonly internalType: "contract ERC20";
|
|
777
|
+
readonly name: "_underlying";
|
|
778
|
+
readonly type: "address";
|
|
779
|
+
}, {
|
|
780
|
+
readonly internalType: "contract ITradingFloorV1";
|
|
781
|
+
readonly name: "_tradingFloor";
|
|
782
|
+
readonly type: "address";
|
|
783
|
+
}, {
|
|
784
|
+
readonly internalType: "uint256";
|
|
785
|
+
readonly name: "_epochDuration";
|
|
786
|
+
readonly type: "uint256";
|
|
787
|
+
}];
|
|
788
|
+
readonly name: "initialize";
|
|
789
|
+
readonly outputs: readonly [];
|
|
790
|
+
readonly stateMutability: "nonpayable";
|
|
791
|
+
readonly type: "function";
|
|
792
|
+
}, {
|
|
793
|
+
readonly inputs: readonly [{
|
|
794
|
+
readonly internalType: "contract ITradingFloorV1";
|
|
795
|
+
readonly name: "_tradingFloor";
|
|
796
|
+
readonly type: "address";
|
|
797
|
+
}, {
|
|
798
|
+
readonly internalType: "contract IERC20";
|
|
799
|
+
readonly name: "_underlying";
|
|
800
|
+
readonly type: "address";
|
|
801
|
+
}];
|
|
802
|
+
readonly name: "initializeLexCommon";
|
|
803
|
+
readonly outputs: readonly [];
|
|
804
|
+
readonly stateMutability: "nonpayable";
|
|
805
|
+
readonly type: "function";
|
|
806
|
+
}, {
|
|
807
|
+
readonly inputs: readonly [{
|
|
808
|
+
readonly internalType: "string";
|
|
809
|
+
readonly name: "_name";
|
|
810
|
+
readonly type: "string";
|
|
811
|
+
}, {
|
|
812
|
+
readonly internalType: "string";
|
|
813
|
+
readonly name: "_symbol";
|
|
814
|
+
readonly type: "string";
|
|
815
|
+
}];
|
|
816
|
+
readonly name: "initializeLexERC20";
|
|
817
|
+
readonly outputs: readonly [];
|
|
818
|
+
readonly stateMutability: "nonpayable";
|
|
819
|
+
readonly type: "function";
|
|
820
|
+
}, {
|
|
821
|
+
readonly inputs: readonly [];
|
|
822
|
+
readonly name: "isUtilizationForLPsValid";
|
|
823
|
+
readonly outputs: readonly [{
|
|
824
|
+
readonly internalType: "bool";
|
|
825
|
+
readonly name: "";
|
|
826
|
+
readonly type: "bool";
|
|
827
|
+
}];
|
|
828
|
+
readonly stateMutability: "view";
|
|
829
|
+
readonly type: "function";
|
|
830
|
+
}, {
|
|
831
|
+
readonly inputs: readonly [];
|
|
832
|
+
readonly name: "maxExtraWithdrawalAmountF";
|
|
833
|
+
readonly outputs: readonly [{
|
|
834
|
+
readonly internalType: "uint256";
|
|
835
|
+
readonly name: "";
|
|
836
|
+
readonly type: "uint256";
|
|
837
|
+
}];
|
|
838
|
+
readonly stateMutability: "view";
|
|
839
|
+
readonly type: "function";
|
|
840
|
+
}, {
|
|
841
|
+
readonly inputs: readonly [];
|
|
842
|
+
readonly name: "minDepositAmount";
|
|
843
|
+
readonly outputs: readonly [{
|
|
844
|
+
readonly internalType: "uint256";
|
|
845
|
+
readonly name: "";
|
|
846
|
+
readonly type: "uint256";
|
|
847
|
+
}];
|
|
848
|
+
readonly stateMutability: "view";
|
|
849
|
+
readonly type: "function";
|
|
850
|
+
}, {
|
|
851
|
+
readonly inputs: readonly [];
|
|
852
|
+
readonly name: "name";
|
|
853
|
+
readonly outputs: readonly [{
|
|
854
|
+
readonly internalType: "string";
|
|
855
|
+
readonly name: "";
|
|
856
|
+
readonly type: "string";
|
|
857
|
+
}];
|
|
858
|
+
readonly stateMutability: "view";
|
|
859
|
+
readonly type: "function";
|
|
860
|
+
}, {
|
|
861
|
+
readonly inputs: readonly [{
|
|
862
|
+
readonly internalType: "int256";
|
|
863
|
+
readonly name: "totalUnrealizedPricePnL";
|
|
864
|
+
readonly type: "int256";
|
|
865
|
+
}];
|
|
866
|
+
readonly name: "nextEpoch";
|
|
867
|
+
readonly outputs: readonly [{
|
|
868
|
+
readonly internalType: "uint256";
|
|
869
|
+
readonly name: "newExchangeRate";
|
|
870
|
+
readonly type: "uint256";
|
|
871
|
+
}];
|
|
872
|
+
readonly stateMutability: "nonpayable";
|
|
873
|
+
readonly type: "function";
|
|
874
|
+
}, {
|
|
875
|
+
readonly inputs: readonly [];
|
|
876
|
+
readonly name: "nextEpochStartMin";
|
|
877
|
+
readonly outputs: readonly [{
|
|
878
|
+
readonly internalType: "uint256";
|
|
879
|
+
readonly name: "";
|
|
880
|
+
readonly type: "uint256";
|
|
881
|
+
}];
|
|
882
|
+
readonly stateMutability: "view";
|
|
883
|
+
readonly type: "function";
|
|
884
|
+
}, {
|
|
885
|
+
readonly inputs: readonly [];
|
|
886
|
+
readonly name: "pendingAdmin";
|
|
887
|
+
readonly outputs: readonly [{
|
|
888
|
+
readonly internalType: "address";
|
|
889
|
+
readonly name: "";
|
|
890
|
+
readonly type: "address";
|
|
891
|
+
}];
|
|
892
|
+
readonly stateMutability: "view";
|
|
893
|
+
readonly type: "function";
|
|
894
|
+
}, {
|
|
895
|
+
readonly inputs: readonly [];
|
|
896
|
+
readonly name: "pendingDepositAmount";
|
|
897
|
+
readonly outputs: readonly [{
|
|
898
|
+
readonly internalType: "uint256";
|
|
899
|
+
readonly name: "";
|
|
900
|
+
readonly type: "uint256";
|
|
901
|
+
}];
|
|
902
|
+
readonly stateMutability: "view";
|
|
903
|
+
readonly type: "function";
|
|
904
|
+
}, {
|
|
905
|
+
readonly inputs: readonly [{
|
|
906
|
+
readonly internalType: "uint256";
|
|
907
|
+
readonly name: "";
|
|
908
|
+
readonly type: "uint256";
|
|
909
|
+
}, {
|
|
910
|
+
readonly internalType: "uint256";
|
|
911
|
+
readonly name: "";
|
|
912
|
+
readonly type: "uint256";
|
|
913
|
+
}];
|
|
914
|
+
readonly name: "pendingDepositorsArr";
|
|
915
|
+
readonly outputs: readonly [{
|
|
916
|
+
readonly internalType: "address";
|
|
917
|
+
readonly name: "";
|
|
918
|
+
readonly type: "address";
|
|
919
|
+
}];
|
|
920
|
+
readonly stateMutability: "view";
|
|
921
|
+
readonly type: "function";
|
|
922
|
+
}, {
|
|
923
|
+
readonly inputs: readonly [{
|
|
924
|
+
readonly internalType: "uint256";
|
|
925
|
+
readonly name: "";
|
|
926
|
+
readonly type: "uint256";
|
|
927
|
+
}, {
|
|
928
|
+
readonly internalType: "address";
|
|
929
|
+
readonly name: "";
|
|
930
|
+
readonly type: "address";
|
|
931
|
+
}];
|
|
932
|
+
readonly name: "pendingDeposits";
|
|
933
|
+
readonly outputs: readonly [{
|
|
934
|
+
readonly internalType: "uint256";
|
|
935
|
+
readonly name: "amount";
|
|
936
|
+
readonly type: "uint256";
|
|
937
|
+
}, {
|
|
938
|
+
readonly internalType: "uint256";
|
|
939
|
+
readonly name: "minAmountOut";
|
|
940
|
+
readonly type: "uint256";
|
|
941
|
+
}];
|
|
942
|
+
readonly stateMutability: "view";
|
|
943
|
+
readonly type: "function";
|
|
944
|
+
}, {
|
|
945
|
+
readonly inputs: readonly [];
|
|
946
|
+
readonly name: "pendingImplementation";
|
|
947
|
+
readonly outputs: readonly [{
|
|
948
|
+
readonly internalType: "address";
|
|
949
|
+
readonly name: "";
|
|
950
|
+
readonly type: "address";
|
|
951
|
+
}];
|
|
952
|
+
readonly stateMutability: "view";
|
|
953
|
+
readonly type: "function";
|
|
954
|
+
}, {
|
|
955
|
+
readonly inputs: readonly [{
|
|
956
|
+
readonly internalType: "uint256";
|
|
957
|
+
readonly name: "";
|
|
958
|
+
readonly type: "uint256";
|
|
959
|
+
}, {
|
|
960
|
+
readonly internalType: "uint256";
|
|
961
|
+
readonly name: "";
|
|
962
|
+
readonly type: "uint256";
|
|
963
|
+
}];
|
|
964
|
+
readonly name: "pendingRedeemersArr";
|
|
965
|
+
readonly outputs: readonly [{
|
|
966
|
+
readonly internalType: "address";
|
|
967
|
+
readonly name: "";
|
|
968
|
+
readonly type: "address";
|
|
969
|
+
}];
|
|
970
|
+
readonly stateMutability: "view";
|
|
971
|
+
readonly type: "function";
|
|
972
|
+
}, {
|
|
973
|
+
readonly inputs: readonly [{
|
|
974
|
+
readonly internalType: "uint256";
|
|
975
|
+
readonly name: "";
|
|
976
|
+
readonly type: "uint256";
|
|
977
|
+
}, {
|
|
978
|
+
readonly internalType: "address";
|
|
979
|
+
readonly name: "";
|
|
980
|
+
readonly type: "address";
|
|
981
|
+
}];
|
|
982
|
+
readonly name: "pendingRedeems";
|
|
983
|
+
readonly outputs: readonly [{
|
|
984
|
+
readonly internalType: "uint256";
|
|
985
|
+
readonly name: "amount";
|
|
986
|
+
readonly type: "uint256";
|
|
987
|
+
}, {
|
|
988
|
+
readonly internalType: "uint256";
|
|
989
|
+
readonly name: "minAmountOut";
|
|
990
|
+
readonly type: "uint256";
|
|
991
|
+
}, {
|
|
992
|
+
readonly internalType: "uint256";
|
|
993
|
+
readonly name: "maxAmountOut";
|
|
994
|
+
readonly type: "uint256";
|
|
995
|
+
}];
|
|
996
|
+
readonly stateMutability: "view";
|
|
997
|
+
readonly type: "function";
|
|
998
|
+
}, {
|
|
999
|
+
readonly inputs: readonly [];
|
|
1000
|
+
readonly name: "pendingWithdrawalAmount";
|
|
1001
|
+
readonly outputs: readonly [{
|
|
1002
|
+
readonly internalType: "uint256";
|
|
1003
|
+
readonly name: "";
|
|
1004
|
+
readonly type: "uint256";
|
|
1005
|
+
}];
|
|
1006
|
+
readonly stateMutability: "view";
|
|
1007
|
+
readonly type: "function";
|
|
1008
|
+
}, {
|
|
1009
|
+
readonly inputs: readonly [];
|
|
1010
|
+
readonly name: "pnlRole";
|
|
1011
|
+
readonly outputs: readonly [{
|
|
1012
|
+
readonly internalType: "address";
|
|
1013
|
+
readonly name: "";
|
|
1014
|
+
readonly type: "address";
|
|
1015
|
+
}];
|
|
1016
|
+
readonly stateMutability: "view";
|
|
1017
|
+
readonly type: "function";
|
|
1018
|
+
}, {
|
|
1019
|
+
readonly inputs: readonly [];
|
|
1020
|
+
readonly name: "poolAccountant";
|
|
1021
|
+
readonly outputs: readonly [{
|
|
1022
|
+
readonly internalType: "contract IPoolAccountantFunctionality";
|
|
1023
|
+
readonly name: "";
|
|
1024
|
+
readonly type: "address";
|
|
1025
|
+
}];
|
|
1026
|
+
readonly stateMutability: "view";
|
|
1027
|
+
readonly type: "function";
|
|
1028
|
+
}, {
|
|
1029
|
+
readonly inputs: readonly [{
|
|
1030
|
+
readonly internalType: "address[]";
|
|
1031
|
+
readonly name: "users";
|
|
1032
|
+
readonly type: "address[]";
|
|
1033
|
+
}];
|
|
1034
|
+
readonly name: "processDeposit";
|
|
1035
|
+
readonly outputs: readonly [{
|
|
1036
|
+
readonly internalType: "uint256";
|
|
1037
|
+
readonly name: "amountDeposited";
|
|
1038
|
+
readonly type: "uint256";
|
|
1039
|
+
}, {
|
|
1040
|
+
readonly internalType: "uint256";
|
|
1041
|
+
readonly name: "amountCanceled";
|
|
1042
|
+
readonly type: "uint256";
|
|
1043
|
+
}, {
|
|
1044
|
+
readonly internalType: "uint256";
|
|
1045
|
+
readonly name: "counterDeposited";
|
|
1046
|
+
readonly type: "uint256";
|
|
1047
|
+
}, {
|
|
1048
|
+
readonly internalType: "uint256";
|
|
1049
|
+
readonly name: "counterCanceled";
|
|
1050
|
+
readonly type: "uint256";
|
|
1051
|
+
}];
|
|
1052
|
+
readonly stateMutability: "nonpayable";
|
|
1053
|
+
readonly type: "function";
|
|
1054
|
+
}, {
|
|
1055
|
+
readonly inputs: readonly [{
|
|
1056
|
+
readonly internalType: "address[]";
|
|
1057
|
+
readonly name: "users";
|
|
1058
|
+
readonly type: "address[]";
|
|
1059
|
+
}];
|
|
1060
|
+
readonly name: "processRedeems";
|
|
1061
|
+
readonly outputs: readonly [{
|
|
1062
|
+
readonly internalType: "uint256";
|
|
1063
|
+
readonly name: "amountRedeemed";
|
|
1064
|
+
readonly type: "uint256";
|
|
1065
|
+
}, {
|
|
1066
|
+
readonly internalType: "uint256";
|
|
1067
|
+
readonly name: "amountCanceled";
|
|
1068
|
+
readonly type: "uint256";
|
|
1069
|
+
}, {
|
|
1070
|
+
readonly internalType: "uint256";
|
|
1071
|
+
readonly name: "counterRedeemed";
|
|
1072
|
+
readonly type: "uint256";
|
|
1073
|
+
}, {
|
|
1074
|
+
readonly internalType: "uint256";
|
|
1075
|
+
readonly name: "counterCanceled";
|
|
1076
|
+
readonly type: "uint256";
|
|
1077
|
+
}];
|
|
1078
|
+
readonly stateMutability: "nonpayable";
|
|
1079
|
+
readonly type: "function";
|
|
1080
|
+
}, {
|
|
1081
|
+
readonly inputs: readonly [{
|
|
1082
|
+
readonly internalType: "address";
|
|
1083
|
+
readonly name: "_to";
|
|
1084
|
+
readonly type: "address";
|
|
1085
|
+
}];
|
|
1086
|
+
readonly name: "reduceReserves";
|
|
1087
|
+
readonly outputs: readonly [{
|
|
1088
|
+
readonly internalType: "uint256";
|
|
1089
|
+
readonly name: "interestShare";
|
|
1090
|
+
readonly type: "uint256";
|
|
1091
|
+
}, {
|
|
1092
|
+
readonly internalType: "uint256";
|
|
1093
|
+
readonly name: "totalFundingShare";
|
|
1094
|
+
readonly type: "uint256";
|
|
1095
|
+
}];
|
|
1096
|
+
readonly stateMutability: "nonpayable";
|
|
1097
|
+
readonly type: "function";
|
|
1098
|
+
}, {
|
|
1099
|
+
readonly inputs: readonly [];
|
|
1100
|
+
readonly name: "registry";
|
|
1101
|
+
readonly outputs: readonly [{
|
|
1102
|
+
readonly internalType: "address";
|
|
1103
|
+
readonly name: "";
|
|
1104
|
+
readonly type: "address";
|
|
1105
|
+
}];
|
|
1106
|
+
readonly stateMutability: "view";
|
|
1107
|
+
readonly type: "function";
|
|
1108
|
+
}, {
|
|
1109
|
+
readonly inputs: readonly [{
|
|
1110
|
+
readonly internalType: "uint256";
|
|
1111
|
+
readonly name: "amount";
|
|
1112
|
+
readonly type: "uint256";
|
|
1113
|
+
}, {
|
|
1114
|
+
readonly internalType: "uint256";
|
|
1115
|
+
readonly name: "minAmountOut";
|
|
1116
|
+
readonly type: "uint256";
|
|
1117
|
+
}, {
|
|
1118
|
+
readonly internalType: "bytes32";
|
|
1119
|
+
readonly name: "domain";
|
|
1120
|
+
readonly type: "bytes32";
|
|
1121
|
+
}, {
|
|
1122
|
+
readonly internalType: "bytes32";
|
|
1123
|
+
readonly name: "referralCode";
|
|
1124
|
+
readonly type: "bytes32";
|
|
1125
|
+
}];
|
|
1126
|
+
readonly name: "requestDeposit";
|
|
1127
|
+
readonly outputs: readonly [];
|
|
1128
|
+
readonly stateMutability: "nonpayable";
|
|
1129
|
+
readonly type: "function";
|
|
1130
|
+
}, {
|
|
1131
|
+
readonly inputs: readonly [{
|
|
1132
|
+
readonly internalType: "address";
|
|
1133
|
+
readonly name: "user";
|
|
1134
|
+
readonly type: "address";
|
|
1135
|
+
}, {
|
|
1136
|
+
readonly internalType: "uint256";
|
|
1137
|
+
readonly name: "amount";
|
|
1138
|
+
readonly type: "uint256";
|
|
1139
|
+
}, {
|
|
1140
|
+
readonly internalType: "uint256";
|
|
1141
|
+
readonly name: "minAmountOut";
|
|
1142
|
+
readonly type: "uint256";
|
|
1143
|
+
}, {
|
|
1144
|
+
readonly internalType: "bytes32";
|
|
1145
|
+
readonly name: "domain";
|
|
1146
|
+
readonly type: "bytes32";
|
|
1147
|
+
}, {
|
|
1148
|
+
readonly internalType: "bytes32";
|
|
1149
|
+
readonly name: "referralCode";
|
|
1150
|
+
readonly type: "bytes32";
|
|
1151
|
+
}];
|
|
1152
|
+
readonly name: "requestDepositViaIntent";
|
|
1153
|
+
readonly outputs: readonly [];
|
|
1154
|
+
readonly stateMutability: "nonpayable";
|
|
1155
|
+
readonly type: "function";
|
|
1156
|
+
}, {
|
|
1157
|
+
readonly inputs: readonly [{
|
|
1158
|
+
readonly internalType: "uint256";
|
|
1159
|
+
readonly name: "amount";
|
|
1160
|
+
readonly type: "uint256";
|
|
1161
|
+
}, {
|
|
1162
|
+
readonly internalType: "uint256";
|
|
1163
|
+
readonly name: "minAmountOut";
|
|
1164
|
+
readonly type: "uint256";
|
|
1165
|
+
}];
|
|
1166
|
+
readonly name: "requestRedeem";
|
|
1167
|
+
readonly outputs: readonly [];
|
|
1168
|
+
readonly stateMutability: "nonpayable";
|
|
1169
|
+
readonly type: "function";
|
|
1170
|
+
}, {
|
|
1171
|
+
readonly inputs: readonly [{
|
|
1172
|
+
readonly internalType: "address";
|
|
1173
|
+
readonly name: "user";
|
|
1174
|
+
readonly type: "address";
|
|
1175
|
+
}, {
|
|
1176
|
+
readonly internalType: "uint256";
|
|
1177
|
+
readonly name: "amount";
|
|
1178
|
+
readonly type: "uint256";
|
|
1179
|
+
}, {
|
|
1180
|
+
readonly internalType: "uint256";
|
|
1181
|
+
readonly name: "minAmountOut";
|
|
1182
|
+
readonly type: "uint256";
|
|
1183
|
+
}];
|
|
1184
|
+
readonly name: "requestRedeemViaIntent";
|
|
1185
|
+
readonly outputs: readonly [];
|
|
1186
|
+
readonly stateMutability: "nonpayable";
|
|
1187
|
+
readonly type: "function";
|
|
1188
|
+
}, {
|
|
1189
|
+
readonly inputs: readonly [{
|
|
1190
|
+
readonly internalType: "address";
|
|
1191
|
+
readonly name: "to";
|
|
1192
|
+
readonly type: "address";
|
|
1193
|
+
}, {
|
|
1194
|
+
readonly internalType: "uint256";
|
|
1195
|
+
readonly name: "amount";
|
|
1196
|
+
readonly type: "uint256";
|
|
1197
|
+
}];
|
|
1198
|
+
readonly name: "sendAssetToTrader";
|
|
1199
|
+
readonly outputs: readonly [];
|
|
1200
|
+
readonly stateMutability: "nonpayable";
|
|
1201
|
+
readonly type: "function";
|
|
1202
|
+
}, {
|
|
1203
|
+
readonly inputs: readonly [{
|
|
1204
|
+
readonly internalType: "uint256";
|
|
1205
|
+
readonly name: "duration";
|
|
1206
|
+
readonly type: "uint256";
|
|
1207
|
+
}];
|
|
1208
|
+
readonly name: "setEpochDuration";
|
|
1209
|
+
readonly outputs: readonly [];
|
|
1210
|
+
readonly stateMutability: "nonpayable";
|
|
1211
|
+
readonly type: "function";
|
|
1212
|
+
}, {
|
|
1213
|
+
readonly inputs: readonly [{
|
|
1214
|
+
readonly internalType: "uint256";
|
|
1215
|
+
readonly name: "delay";
|
|
1216
|
+
readonly type: "uint256";
|
|
1217
|
+
}];
|
|
1218
|
+
readonly name: "setEpochsDelayDeposit";
|
|
1219
|
+
readonly outputs: readonly [];
|
|
1220
|
+
readonly stateMutability: "nonpayable";
|
|
1221
|
+
readonly type: "function";
|
|
1222
|
+
}, {
|
|
1223
|
+
readonly inputs: readonly [{
|
|
1224
|
+
readonly internalType: "uint256";
|
|
1225
|
+
readonly name: "delay";
|
|
1226
|
+
readonly type: "uint256";
|
|
1227
|
+
}];
|
|
1228
|
+
readonly name: "setEpochsDelayRedeem";
|
|
1229
|
+
readonly outputs: readonly [];
|
|
1230
|
+
readonly stateMutability: "nonpayable";
|
|
1231
|
+
readonly type: "function";
|
|
1232
|
+
}, {
|
|
1233
|
+
readonly inputs: readonly [{
|
|
1234
|
+
readonly internalType: "uint256";
|
|
1235
|
+
readonly name: "maxExtra";
|
|
1236
|
+
readonly type: "uint256";
|
|
1237
|
+
}];
|
|
1238
|
+
readonly name: "setMaxExtraWithdrawalAmountF";
|
|
1239
|
+
readonly outputs: readonly [];
|
|
1240
|
+
readonly stateMutability: "nonpayable";
|
|
1241
|
+
readonly type: "function";
|
|
1242
|
+
}, {
|
|
1243
|
+
readonly inputs: readonly [{
|
|
1244
|
+
readonly internalType: "uint256";
|
|
1245
|
+
readonly name: "amount";
|
|
1246
|
+
readonly type: "uint256";
|
|
1247
|
+
}];
|
|
1248
|
+
readonly name: "setMinDepositAmount";
|
|
1249
|
+
readonly outputs: readonly [];
|
|
1250
|
+
readonly stateMutability: "nonpayable";
|
|
1251
|
+
readonly type: "function";
|
|
1252
|
+
}, {
|
|
1253
|
+
readonly inputs: readonly [{
|
|
1254
|
+
readonly internalType: "address";
|
|
1255
|
+
readonly name: "pnl";
|
|
1256
|
+
readonly type: "address";
|
|
1257
|
+
}];
|
|
1258
|
+
readonly name: "setPnlRole";
|
|
1259
|
+
readonly outputs: readonly [];
|
|
1260
|
+
readonly stateMutability: "nonpayable";
|
|
1261
|
+
readonly type: "function";
|
|
1262
|
+
}, {
|
|
1263
|
+
readonly inputs: readonly [{
|
|
1264
|
+
readonly internalType: "contract IPoolAccountantFunctionality";
|
|
1265
|
+
readonly name: "_poolAccountant";
|
|
1266
|
+
readonly type: "address";
|
|
1267
|
+
}];
|
|
1268
|
+
readonly name: "setPoolAccountant";
|
|
1269
|
+
readonly outputs: readonly [];
|
|
1270
|
+
readonly stateMutability: "nonpayable";
|
|
1271
|
+
readonly type: "function";
|
|
1272
|
+
}, {
|
|
1273
|
+
readonly inputs: readonly [];
|
|
1274
|
+
readonly name: "symbol";
|
|
1275
|
+
readonly outputs: readonly [{
|
|
1276
|
+
readonly internalType: "string";
|
|
1277
|
+
readonly name: "";
|
|
1278
|
+
readonly type: "string";
|
|
1279
|
+
}];
|
|
1280
|
+
readonly stateMutability: "view";
|
|
1281
|
+
readonly type: "function";
|
|
1282
|
+
}, {
|
|
1283
|
+
readonly inputs: readonly [];
|
|
1284
|
+
readonly name: "toggleImmediateDepositAllowed";
|
|
1285
|
+
readonly outputs: readonly [];
|
|
1286
|
+
readonly stateMutability: "nonpayable";
|
|
1287
|
+
readonly type: "function";
|
|
1288
|
+
}, {
|
|
1289
|
+
readonly inputs: readonly [];
|
|
1290
|
+
readonly name: "totalSupply";
|
|
1291
|
+
readonly outputs: readonly [{
|
|
1292
|
+
readonly internalType: "uint256";
|
|
1293
|
+
readonly name: "";
|
|
1294
|
+
readonly type: "uint256";
|
|
1295
|
+
}];
|
|
1296
|
+
readonly stateMutability: "view";
|
|
1297
|
+
readonly type: "function";
|
|
1298
|
+
}, {
|
|
1299
|
+
readonly inputs: readonly [];
|
|
1300
|
+
readonly name: "tradingFloor";
|
|
1301
|
+
readonly outputs: readonly [{
|
|
1302
|
+
readonly internalType: "contract ITradingFloorV1";
|
|
1303
|
+
readonly name: "";
|
|
1304
|
+
readonly type: "address";
|
|
1305
|
+
}];
|
|
1306
|
+
readonly stateMutability: "view";
|
|
1307
|
+
readonly type: "function";
|
|
1308
|
+
}, {
|
|
1309
|
+
readonly inputs: readonly [{
|
|
1310
|
+
readonly internalType: "address";
|
|
1311
|
+
readonly name: "recipient";
|
|
1312
|
+
readonly type: "address";
|
|
1313
|
+
}, {
|
|
1314
|
+
readonly internalType: "uint256";
|
|
1315
|
+
readonly name: "amount";
|
|
1316
|
+
readonly type: "uint256";
|
|
1317
|
+
}];
|
|
1318
|
+
readonly name: "transfer";
|
|
1319
|
+
readonly outputs: readonly [{
|
|
1320
|
+
readonly internalType: "bool";
|
|
1321
|
+
readonly name: "";
|
|
1322
|
+
readonly type: "bool";
|
|
1323
|
+
}];
|
|
1324
|
+
readonly stateMutability: "nonpayable";
|
|
1325
|
+
readonly type: "function";
|
|
1326
|
+
}, {
|
|
1327
|
+
readonly inputs: readonly [{
|
|
1328
|
+
readonly internalType: "address";
|
|
1329
|
+
readonly name: "sender";
|
|
1330
|
+
readonly type: "address";
|
|
1331
|
+
}, {
|
|
1332
|
+
readonly internalType: "address";
|
|
1333
|
+
readonly name: "recipient";
|
|
1334
|
+
readonly type: "address";
|
|
1335
|
+
}, {
|
|
1336
|
+
readonly internalType: "uint256";
|
|
1337
|
+
readonly name: "amount";
|
|
1338
|
+
readonly type: "uint256";
|
|
1339
|
+
}];
|
|
1340
|
+
readonly name: "transferFrom";
|
|
1341
|
+
readonly outputs: readonly [{
|
|
1342
|
+
readonly internalType: "bool";
|
|
1343
|
+
readonly name: "";
|
|
1344
|
+
readonly type: "bool";
|
|
1345
|
+
}];
|
|
1346
|
+
readonly stateMutability: "nonpayable";
|
|
1347
|
+
readonly type: "function";
|
|
1348
|
+
}, {
|
|
1349
|
+
readonly inputs: readonly [];
|
|
1350
|
+
readonly name: "underlying";
|
|
1351
|
+
readonly outputs: readonly [{
|
|
1352
|
+
readonly internalType: "contract IERC20";
|
|
1353
|
+
readonly name: "";
|
|
1354
|
+
readonly type: "address";
|
|
1355
|
+
}];
|
|
1356
|
+
readonly stateMutability: "view";
|
|
1357
|
+
readonly type: "function";
|
|
1358
|
+
}, {
|
|
1359
|
+
readonly inputs: readonly [{
|
|
1360
|
+
readonly internalType: "uint256";
|
|
1361
|
+
readonly name: "underlyingAmount";
|
|
1362
|
+
readonly type: "uint256";
|
|
1363
|
+
}];
|
|
1364
|
+
readonly name: "underlyingAmountToOwnAmount";
|
|
1365
|
+
readonly outputs: readonly [{
|
|
1366
|
+
readonly internalType: "uint256";
|
|
1367
|
+
readonly name: "ownAmount";
|
|
1368
|
+
readonly type: "uint256";
|
|
1369
|
+
}];
|
|
1370
|
+
readonly stateMutability: "view";
|
|
1371
|
+
readonly type: "function";
|
|
1372
|
+
}, {
|
|
1373
|
+
readonly inputs: readonly [];
|
|
1374
|
+
readonly name: "underlyingBalanceForExchangeRate";
|
|
1375
|
+
readonly outputs: readonly [{
|
|
1376
|
+
readonly internalType: "uint256";
|
|
1377
|
+
readonly name: "";
|
|
1378
|
+
readonly type: "uint256";
|
|
1379
|
+
}];
|
|
1380
|
+
readonly stateMutability: "view";
|
|
1381
|
+
readonly type: "function";
|
|
1382
|
+
}, {
|
|
1383
|
+
readonly inputs: readonly [];
|
|
1384
|
+
readonly name: "underlyingDecimals";
|
|
1385
|
+
readonly outputs: readonly [{
|
|
1386
|
+
readonly internalType: "uint256";
|
|
1387
|
+
readonly name: "";
|
|
1388
|
+
readonly type: "uint256";
|
|
1389
|
+
}];
|
|
1390
|
+
readonly stateMutability: "view";
|
|
1391
|
+
readonly type: "function";
|
|
1392
|
+
}, {
|
|
1393
|
+
readonly inputs: readonly [{
|
|
1394
|
+
readonly internalType: "uint256";
|
|
1395
|
+
readonly name: "extraAmount";
|
|
1396
|
+
readonly type: "uint256";
|
|
1397
|
+
}, {
|
|
1398
|
+
readonly internalType: "int256";
|
|
1399
|
+
readonly name: "unrealizedFunding";
|
|
1400
|
+
readonly type: "int256";
|
|
1401
|
+
}];
|
|
1402
|
+
readonly name: "virtualBalanceForUtilization";
|
|
1403
|
+
readonly outputs: readonly [{
|
|
1404
|
+
readonly internalType: "uint256";
|
|
1405
|
+
readonly name: "";
|
|
1406
|
+
readonly type: "uint256";
|
|
1407
|
+
}];
|
|
1408
|
+
readonly stateMutability: "view";
|
|
1409
|
+
readonly type: "function";
|
|
1410
|
+
}, {
|
|
1411
|
+
readonly inputs: readonly [];
|
|
1412
|
+
readonly name: "virtualBalanceForUtilization";
|
|
1413
|
+
readonly outputs: readonly [{
|
|
1414
|
+
readonly internalType: "uint256";
|
|
1415
|
+
readonly name: "";
|
|
1416
|
+
readonly type: "uint256";
|
|
1417
|
+
}];
|
|
1418
|
+
readonly stateMutability: "view";
|
|
1419
|
+
readonly type: "function";
|
|
1420
|
+
}];
|
|
1421
|
+
static createInterface(): LexPoolV1Interface;
|
|
1422
|
+
static connect(address: string, runner?: ContractRunner | null): LexPoolV1;
|
|
1423
|
+
}
|
|
1424
|
+
export {};
|
|
1425
|
+
//# sourceMappingURL=LexPoolV1__factory.d.ts.map
|