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,866 @@
|
|
|
1
|
+
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
+
import type { Signer, AddressLike, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
+
import type { NonPayableOverrides } from "../../../../common";
|
|
4
|
+
import type { ChipsIntentsVerifierV1, ChipsIntentsVerifierV1Interface } from "../../../../contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1";
|
|
5
|
+
type ChipsIntentsVerifierV1ConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
+
export declare class ChipsIntentsVerifierV1__factory extends ContractFactory {
|
|
7
|
+
constructor(...args: ChipsIntentsVerifierV1ConstructorParams);
|
|
8
|
+
getDeployTransaction(_registry: AddressLike, overrides?: NonPayableOverrides & {
|
|
9
|
+
from?: string;
|
|
10
|
+
}): Promise<ContractDeployTransaction>;
|
|
11
|
+
deploy(_registry: AddressLike, overrides?: NonPayableOverrides & {
|
|
12
|
+
from?: string;
|
|
13
|
+
}): Promise<ChipsIntentsVerifierV1 & {
|
|
14
|
+
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
+
}>;
|
|
16
|
+
connect(runner: ContractRunner | null): ChipsIntentsVerifierV1__factory;
|
|
17
|
+
static readonly bytecode = "0x60a06040523480156200001157600080fd5b506040516200345938038062003459833981016040819052620000349162000115565b604080518082018252601681527f436869707320496e74656e747320566572696669657200000000000000000000602080830191909152825180840190935260018352603160f81b90830152600080546001600160a01b031916331790559081816002620000a38382620001ee565b506003620000b28282620001ee565b5050506001600160a01b03831691506200010390505760405162461bcd60e51b815260206004820152600c60248201526b57524f4e475f504152414d5360a01b604482015260640160405180910390fd5b6001600160a01b0316608052620002ba565b6000602082840312156200012857600080fd5b81516001600160a01b03811681146200014057600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200017257607f821691505b6020821081036200019357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001e9576000816000526020600020601f850160051c81016020861015620001c45750805b601f850160051c820191505b81811015620001e557828155600101620001d0565b5050505b505050565b81516001600160401b038111156200020a576200020a62000147565b62000222816200021b84546200015d565b8462000199565b602080601f8311600181146200025a5760008415620002415750858301515b600019600386901b1c1916600185901b178555620001e5565b600085815260208120601f198616915b828110156200028b578886015182559484019460019091019084016200026a565b5085821015620002aa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805161317c620002dd600039600081816104950152611b31015261317c6000f3fe60806040526004361061020f5760003560e01c80639652a4bd11610118578063c49f91d3116100a0578063f18e79511161006f578063f18e79511461069b578063f773abcd146106bb578063f851a440146106fb578063fc4334dd1461071b578063ffac4cc81461073b57600080fd5b8063c49f91d31461061f578063da3032f614610653578063e9c714f214610673578063efe8cc751461068857600080fd5b8063b589f944116100e7578063b589f9441461056e578063b647960e1461059f578063b71d1a0c146105bf578063bca93cf5146105df578063c19152f6146105ff57600080fd5b80639652a4bd146104f05780639d44332714610505578063a009439c14610525578063a823b8491461053857600080fd5b80632f56a0711161019b578063673291341161016a578063673291341461042c5780636d156be4146104415780636fccbffc146104565780637b10399914610483578063825b392c146104b757600080fd5b80632f56a071146103ac578063494b6fc6146103d957806358659d6e146103f95780635ac928b31461041957600080fd5b8063123ae93f116101e2578063123ae93f146102e157806312d99fd11461031457806315c3d0ae1461033657806316e27a7c14610349578063267822471461038c57600080fd5b80630da7fba9146102145780630f2a3d471461023f578063108c66e31461027a578063119df25f146102ba575b600080fd5b34801561022057600080fd5b5061022961075b565b604051610236919061277a565b60405180910390f35b34801561024b57600080fd5b5061026c61025a3660046127a5565b60066020526000908152604090205481565b604051908152602001610236565b34801561028657600080fd5b5061022960405180604001604052806014815260200173494e54454e54535f5045524d495353494f4e535f60601b81525081565b3480156102c657600080fd5b50335b6040516001600160a01b039091168152602001610236565b3480156102ed57600080fd5b506103016102fc3660046127d9565b6107e9565b60405161ffff9091168152602001610236565b34801561032057600080fd5b5061033461032f3660046127f4565b610808565b005b610334610344366004612843565b610849565b34801561035557600080fd5b5061026c6103643660046127a5565b6001600160a01b03166000908152600660209081526040808320548352600490915290205490565b34801561039857600080fd5b506001546102c9906001600160a01b031681565b3480156103b857600080fd5b5061026c6103c73660046127a5565b60096020526000908152604090205481565b3480156103e557600080fd5b506103346103f4366004612888565b610d3a565b34801561040557600080fd5b506103346104143660046128c1565b610dbb565b610334610427366004612946565b610e0e565b34801561043857600080fd5b50610229610f03565b34801561044d57600080fd5b50610229610f1f565b34801561046257600080fd5b5061026c610471366004612987565b60046020526000908152604090205481565b34801561048f57600080fd5b506102c97f000000000000000000000000000000000000000000000000000000000000000081565b3480156104c357600080fd5b506102c96104d23660046127a5565b6001600160a01b039081166000908152600b60205260409020541690565b3480156104fc57600080fd5b50610229610f3b565b34801561051157600080fd5b506102296105203660046127a5565b610f48565b610334610533366004612946565b610f61565b34801561054457600080fd5b506102c96105533660046127a5565b600b602052600090815260409020546001600160a01b031681565b34801561057a57600080fd5b506103016105893660046127d9565b600a6020526000908152604090205461ffff1681565b3480156105ab57600080fd5b506103346105ba3660046129a0565b6110b3565b3480156105cb57600080fd5b506103346105da3660046127a5565b6111fb565b3480156105eb57600080fd5b506008546102c9906001600160a01b031681565b34801561060b57600080fd5b5061033461061a3660046127f4565b6112a3565b34801561062b57600080fd5b5061026c7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81565b34801561065f57600080fd5b506102c961066e3660046129d3565b611326565b34801561067f57600080fd5b5061033461142c565b610334610696366004612843565b61154a565b3480156106a757600080fd5b506103346106b63660046127a5565b611793565b3480156106c757600080fd5b506106eb6106d6366004612987565b60076020526000908152604090205460ff1681565b6040519015158152602001610236565b34801561070757600080fd5b506000546102c9906001600160a01b031681565b34801561072757600080fd5b506102c96107363660046129d3565b611807565b34801561074757600080fd5b506103016107563660046127a5565b611822565b6002805461076890612a24565b80601f016020809104026020016040519081016040528092919081815260200182805461079490612a24565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b505050505081565b61ffff8082166000908152600a60205260408120549091165b92915050565b6000546001600160a01b0316331461083b5760405162461bcd60e51b815260040161083290612a58565b60405180910390fd5b61084582826118a8565b5050565b60008061086461085f60608801604089016127a5565b6119ad565b9150915060006108778787878787611807565b905061088960808801606089016127a5565b6001600160a01b0316816001600160a01b031614806108cc57506108cc6108b66060890160408a016127a5565b6108c660808a0160608b016127a5565b83611a74565b61090c5760405162461bcd60e51b81526020600482015260116024820152702427a62222a92fa727aa2fa9a4a3a722a960791b6044820152606401610832565b61091c60808801606089016127a5565b6001600160a01b031661093560a0890160808a016127a5565b6001600160a01b0316146109815760405162461bcd60e51b81526020600482015260136024820152722427a62222a92fa727aa2fa922a1a2a4ab22a960691b6044820152606401610832565b60008760a00135116109a55760405162461bcd60e51b815260040161083290612a7c565b86602001354211156109ea5760405162461bcd60e51b815260206004820152600e60248201526d12539511539517d156141254915160921b6044820152606401610832565b6000600b816109ff60608b0160408c016127a5565b6001600160a01b03908116825260208201929092526040016000205416905080610a755760405162461bcd60e51b815260206004820152602160248201527f4e4f5f575241505f4e41544956455f434849505f494e5f4f55545f48454c50456044820152602960f91b6064820152608401610832565b610a80878787611ca0565b600080610ab2610a9660608c0160408d016127a5565b610aa660808d0160608e016127a5565b8c60a001356000611d61565b915091506000610ad58661ffff9081166000908152600a60205260409020541690565b90508061ffff16600003610b1e5760405162461bcd60e51b815260206004820152601060248201526f2727afa2a4a22fa327a92fa1a420a4a760811b6044820152606401610832565b6000610b6860006175306000610b6062030d406000610b5960408051600360f01b602082015281516002818303018152602290910190915290565b9190611edd565b929190611f3b565b905060006040518060e001604052808461ffff1663ffffffff168152602001610b97886001600160a01b031690565b81526020018681526020018681526020018381526020018e6080016020810190610bc191906127a5565b604080516001600160a01b0390921660208301520160408051808303601f19018152918152908252805160008082526020828101909352919092019190508152509050600060405180604001604052803481526020016000815250905060003390508e6040016020810190610c3691906127a5565b6001600160a01b031663c7c7f5b3348585856040518563ffffffff1660e01b8152600401610c6693929190612ab7565b60c06040518083038185885af1158015610c84573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ca99190612bc2565b50508e6060016020810190610cbe91906127a5565b6001600160a01b03168f6040016020810190610cda91906127a5565b6001600160a01b0316336001600160a01b03167f1079ee01d7b99d196004497f2f8f836ba16c547520f3d51d2abdfda2d8e9189c60028b8b604051610d2193929190612c63565b60405180910390a4505050505050505050505050505050565b6000546001600160a01b03163314610d645760405162461bcd60e51b815260040161083290612a58565b6001600160a01b038281166000818152600b602052604080822080546001600160a01b0319169486169485179055517f4c81ed7d2492f22714ae0835937bbf99257d379cfb6a220bb66551c3f011d24d9190a35050565b6000546001600160a01b03163314610de55760405162461bcd60e51b815260040161083290612a58565b6001600160a01b0383166000908152600560205260409020610e08828483612cdb565b50505050565b600080610e1a856119ad565b909250905033610e2b868683611a74565b610e675760405162461bcd60e51b815260206004820152600d60248201526c2727afa822a926a4a9a9a4a7a760991b6044820152606401610832565b60008411610e875760405162461bcd60e51b815260040161083290612a7c565b84600080610e9a8984808a896001611f7a565b91509150836001600160a01b0316886001600160a01b03168a6001600160a01b03167fdd66fa3092ffc9b32be410c8d63671a98139d1b96d77421ed46bc7ee8db2977f60018686604051610ef093929190612c63565b60405180910390a4505050505050505050565b6040518060c00160405280608781526020016130406087913981565b6040518060a00160405280608081526020016130c76080913981565b6003805461076890612a24565b6005602052600090815260409020805461076890612a24565b6000546001600160a01b03163314610f8b5760405162461bcd60e51b815260040161083290612a58565b6001600160a01b038216610fd15760405162461bcd60e51b815260206004820152600d60248201526c52454345495645525f5a45524f60981b6044820152606401610832565b60008111610ff15760405162461bcd60e51b815260040161083290612a7c565b813b156110355760405162461bcd60e51b81526020600482015260126024820152711213d311115497d254d7d0d3d395149050d560721b6044820152606401610832565b6000611040846119ad565b9150839050600080611056878480888886611f7a565b91509150856001600160a01b0316876001600160a01b03167f88423b880e70edc710bff66a14f9ba383845bf3a03990885371c3b5bcbcf34bb600185856040516110a293929190612c63565b60405180910390a350505050505050565b6000546001600160a01b031633146110dd5760405162461bcd60e51b815260040161083290612a58565b8161ffff1660000361111d5760405162461bcd60e51b81526020600482015260096024820152681393d7d1559357d25160ba1b6044820152606401610832565b8061ffff1660000361115d5760405162461bcd60e51b81526020600482015260096024820152681393d7d31697d1525160ba1b6044820152606401610832565b61ffff8083166000908152600a602052604090205416156111ae5760405162461bcd60e51b815260206004820152600b60248201526a1053149150511657d4d15560aa1b6044820152606401610832565b61ffff8281166000818152600a6020526040808220805461ffff19169486169485179055517f93e63cb13e93e813c5c78bc35ce8bf5ef30c53cde64cb032c03dea5dcc01fefa9190a35050565b6000546001600160a01b031633146112415760405162461bcd60e51b81526020600482015260096024820152682737ba1020b236b4b760b91b6044820152606401610832565b600180546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a991015b60405180910390a15050565b6000546001600160a01b031633146112cd5760405162461bcd60e51b815260040161083290612a58565b6001600160a01b03821660008181526009602052604090819020839055517f6de5833edd8cadb348e5c7f672228839b7b5be533a4ac9635d26fe6c933b94bc9061131a9084815260200190565b60405180910390a25050565b6000808261134161133c368a90038a018a612e31565b6120ed565b60405161190160f01b60208201526022810192909252604282015260620160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa1580156113ca573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166114215760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f5349474e415455524560781b6044820152606401610832565b979650505050505050565b6001546001600160a01b03163314801561145057506001546001600160a01b031615155b61149c5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420746865204558495354494e472070656e64696e672061646d696e00006044820152606401610832565b60008054600180546001600160a01b038082166001600160a01b031980861682179096559490911690915560408051919092168082526020820184905292917ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc910160405180910390a1600154604080516001600160a01b03808516825290921660208301527fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99101611297565b60008061156061085f60608801604089016127a5565b9150915060006115738787878787611326565b905061158560808801606089016127a5565b6001600160a01b0316816001600160a01b031614806115b257506115b26108b66060890160408a016127a5565b6115f25760405162461bcd60e51b81526020600482015260116024820152702427a62222a92fa727aa2fa9a4a3a722a960791b6044820152606401610832565b61160260808801606089016127a5565b6001600160a01b031661161b60a0890160808a016127a5565b6001600160a01b0316146116675760405162461bcd60e51b81526020600482015260136024820152722427a62222a92fa727aa2fa922a1a2a4ab22a960691b6044820152606401610832565b60008760a001351161168b5760405162461bcd60e51b815260040161083290612a7c565b86602001354211156116d05760405162461bcd60e51b815260206004820152600e60248201526d12539511539517d156141254915160921b6044820152606401610832565b6116db868686611ca0565b60008061171e6116f160608b0160408c016127a5565b61170160808c0160608d016127a5565b61171160a08d0160808e016127a5565b8c60a00135886000611f7a565b909250905061173360808a0160608b016127a5565b6001600160a01b031661174c60608b0160408c016127a5565b6001600160a01b0316336001600160a01b03167f1079ee01d7b99d196004497f2f8f836ba16c547520f3d51d2abdfda2d8e9189c60018686604051610ef093929190612c63565b6000546001600160a01b031633146117bd5760405162461bcd60e51b815260040161083290612a58565b600880546001600160a01b0319166001600160a01b0383169081179091556040517ffd2d86a41f334e70107fa88620f07ffb476a68c8cc6a5106a93dd39e0e216d6f90600090a250565b6000808261134161181d368a90038a018a612e31565b61215b565b6001600160a01b03811660009081526006602052604081205480820361188a5760405162461bcd60e51b815260206004820152601860248201527f4e4f5f534f555243455f434841494e5f464f525f4348495000000000000000006044820152606401610832565b61ffff8082166000908152600a6020526040902054165b9392505050565b6001600160a01b0382166000908152600660205260409020541561191c5760405162461bcd60e51b815260206004820152602560248201527f434841494e5f49445f464f525f41535345545f414c52454144595f434f4e464960448201526411d554915160da1b6064820152608401610832565b8060000361195c5760405162461bcd60e51b815260206004820152600d60248201526c434841494e5f49445f5a45524f60981b6044820152606401610832565b611965816121ac565b506001600160a01b038216600081815260066020526040808220849055518392917f8983e01eaf5771a114f1aa7f72a023a35642e048180682aa2fb04db0cbd220c291a35050565b6001600160a01b0381166000908152600660205260408120548190808203611a0f5760405162461bcd60e51b81526020600482015260156024820152741393d7d0d210525397d25117d193d497d054d4d155605a1b6044820152606401610832565b60008181526004602052604090205480611a6b5760405162461bcd60e51b815260206004820152601d60248201527f4e4f5f444f4d41494e5f534550415241544f525f464f525f434841494e0000006044820152606401610832565b94909350915050565b6001600160a01b03831660009081526005602052604081208054829190611a9a90612a24565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac690612a24565b8015611b135780601f10611ae857610100808354040283529160200191611b13565b820191906000526020600020905b815481529060010190602001808311611af657829003601f168201915b505050505090508051600003611b2d5760009150506118a1565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166358ca59ce60405180604001604052806014815260200173494e54454e54535f5045524d495353494f4e535f60601b81525084604051602001611b9d929190612e4d565b6040516020818303038152906040526040518263ffffffff1660e01b8152600401611bc8919061277a565b602060405180830381865afa158015611be5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c099190612e7c565b90506001600160a01b038116611c24576000925050506118a1565b60405163b0cbc2e160e01b81526001600160a01b0382169063b0cbc2e190611c559060039089908990600401612e99565b602060405180830381865afa158015611c72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c969190612ecb565b9695505050505050565b6040516001600160f81b031960f885901b166020820152602181018390526041810182905260009060610160408051601f1981840301815291815281516020928301206000818152600790935291205490915060ff1615611d435760405162461bcd60e51b815260206004820152601d60248201527f494e54454e54535f5349475f414c52454144595f50524f4345535345440000006044820152606401610832565b6000908152600760205260409020805460ff19166001179055505050565b6001600160a01b03841660009081526009602052604081205480611db85760405162461bcd60e51b815260206004820152600e60248201526d1393d7d1915157d111519253915160921b6044820152606401610832565b600019811480611dc55750825b15611dce575060005b808411611e1d5760405162461bcd60e51b815260206004820152601860248201527f414d4f554e545f4c4553535f4f525f455155414c5f46454500000000000000006044820152606401610832565b611e28868686612365565b611e3286826123ea565b6000866001600160a01b031663963efcaa6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e969190612eed565b90506000611ea48387612f1c565b9050611eb08183612441565b93506000611ebe8583612f1c565b90508015611ed157611ed1898983612458565b50505094509492505050565b6060836003611eed826000612493565b61ffff1614611f2157611f01816000612493565b604051633a51740d60e01b815261ffff9091166004820152602401610832565b6000611f2d85856124f0565b9050611c9686600183612569565b6060846003611f4b826000612493565b61ffff1614611f5f57611f01816000612493565b6000611f6c8686866125d4565b905061142187600383612569565b600080611f8988888786611d61565b90925090506000611fad8561ffff9081166000908152600a60205260409020541690565b90508061ffff16600003611ff65760405162461bcd60e51b815260206004820152601060248201526f2727afa2a4a22fa327a92fa1a420a4a760811b6044820152606401610832565b606060006040518060e001604052808461ffff1663ffffffff1681526020016120258b6001600160a01b031690565b8152602001868152602001868152602001838152602001838152602001838152509050600060405180604001604052803481526020016000815250905060003390508c6001600160a01b031663c7c7f5b3348585856040518563ffffffff1660e01b815260040161209893929190612ab7565b60c06040518083038185885af11580156120b6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120db9190612bc2565b50505050505050965096945050505050565b60006040518060a00160405280608081526020016130c76080913980516020918201208351848301516040808701516060880151608089015160a08a0151935161213e989394929391929101612f2f565b604051602081830303815290604052805190602001209050919050565b60006040518060c00160405280608781526020016130406087913980516020918201208351848301516040808701516060880151608089015160a08a0151935161213e989394929391929101612f2f565b600081815260046020526040812054806108025760006123086040518060800160405280600280546121dd90612a24565b80601f016020809104026020016040519081016040528092919081815260200182805461220990612a24565b80156122565780601f1061222b57610100808354040283529160200191612256565b820191906000526020600020905b81548152906001019060200180831161223957829003601f168201915b505050505081526020016003805461226d90612a24565b80601f016020809104026020016040519081016040528092919081815260200182805461229990612a24565b80156122e65780601f106122bb576101008083540402835291602001916122e6565b820191906000526020600020905b8154815290600101906020018083116122c957829003601f168201915b50505050508152602001868152602001306001600160a01b0316815250612677565b600085815260046020526040908190208290555190915084907f04df087044a5490c34ea0092af5dbdd1a3a35fefd63f0864c1d05dba3075f165906123509084815260200190565b60405180910390a29392505050565b50919050565b80156123e5576040516323b872dd60e01b81526001600160a01b038381166004830152306024830152604482018390528416906323b872dd906064015b6020604051808303816000875af11580156123c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e089190612ecb565b505050565b6008546001600160a01b0316806124365760405162461bcd60e51b815260206004820152601060248201526f2727afa322a2a9afa922a1a2a4ab22a960811b6044820152606401610832565b6123e5838284612458565b60008161244e8185612f6a565b6118a19190612f8c565b80156123e55760405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016123a2565b60006124a0826002612fa3565b835110156124e75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b6044820152606401610832565b50016002015190565b60606001600160801b0382161561253857604080516001600160801b0319608086811b8216602084015285901b166030820152016040516020818303038152906040526118a1565b6040516001600160801b0319608085901b166020820152603001604051602081830303815290604052905092915050565b6060836003612579826000612493565b61ffff161461258d57611f01816000612493565b84600161259a85516126f7565b6125a5906001612fb6565b86866040516020016125bb959493929190612fd8565b6040516020818303038152906040529150509392505050565b60606001600160801b03821615612631576040516001600160f01b031960f086901b1660208201526001600160801b0319608085811b8216602284015284901b16603282015260420160405160208183030381529060405261266f565b6040516001600160f01b031960f086901b1660208201526001600160801b0319608085901b1660228201526032016040516020818303038152906040525b949350505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8260000151805190602001208360200151805190602001208460400151856060015160405160200161213e9594939291909485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b600061ffff821115612726576040516306dfcc6560e41b81526010600482015260248101839052604401610832565b5090565b60005b8381101561274557818101518382015260200161272d565b50506000910152565b6000815180845261276681602086016020860161272a565b601f01601f19169290920160200192915050565b6020815260006118a1602083018461274e565b6001600160a01b03811681146127a257600080fd5b50565b6000602082840312156127b757600080fd5b81356118a18161278d565b803561ffff811681146127d457600080fd5b919050565b6000602082840312156127eb57600080fd5b6118a1826127c2565b6000806040838503121561280757600080fd5b82356128128161278d565b946020939093013593505050565b600060c0828403121561235f57600080fd5b803560ff811681146127d457600080fd5b600080600080610120858703121561285a57600080fd5b6128648686612820565b935061287260c08601612832565b939693955050505060e082013591610100013590565b6000806040838503121561289b57600080fd5b82356128a68161278d565b915060208301356128b68161278d565b809150509250929050565b6000806000604084860312156128d657600080fd5b83356128e18161278d565b9250602084013567ffffffffffffffff808211156128fe57600080fd5b818601915086601f83011261291257600080fd5b81358181111561292157600080fd5b87602082850101111561293357600080fd5b6020830194508093505050509250925092565b60008060006060848603121561295b57600080fd5b83356129668161278d565b925060208401356129768161278d565b929592945050506040919091013590565b60006020828403121561299957600080fd5b5035919050565b600080604083850312156129b357600080fd5b6129bc836127c2565b91506129ca602084016127c2565b90509250929050565b600080600080600061014086880312156129ec57600080fd5b6129f68787612820565b9450612a0460c08701612832565b949794965050505060e08301359261010081013592610120909101359150565b600181811c90821680612a3857607f821691505b60208210810361235f57634e487b7160e01b600052602260045260246000fd5b6020808252600a908201526927a7262cafa0a226a4a760b11b604082015260600190565b6020808252600b908201526a414d4f554e545f5a45524f60a81b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b6080815263ffffffff8451166080820152602084015160a0820152604084015160c0820152606084015160e08201526000608085015160e0610100840152612b0361016084018261274e565b905060a0860151607f198085840301610120860152612b22838361274e565b925060c08801519150808584030161014086015250612b41828261274e565b92505050612b5c602083018580518252602090810151910152565b6001600160a01b0383166060830152949350505050565b600060408284031215612b8557600080fd5b6040516040810181811067ffffffffffffffff82111715612ba857612ba8612aa1565b604052825181526020928301519281019290925250919050565b60008082840360c0811215612bd657600080fd5b6080811215612be457600080fd5b506040516060810167ffffffffffffffff8282108183111715612c0957612c09612aa1565b8160405285518352602086015191508082168214612c2657600080fd5b506020820152612c398560408601612b73565b604082015291506129ca8460808501612b73565b634e487b7160e01b600052602160045260246000fd5b6060810160038510612c7757612c77612c4d565b938152602081019290925260409091015290565b601f8211156123e5576000816000526020600020601f850160051c81016020861015612cb45750805b601f850160051c820191505b81811015612cd357828155600101612cc0565b505050505050565b67ffffffffffffffff831115612cf357612cf3612aa1565b612d0783612d018354612a24565b83612c8b565b6000601f841160018114612d3b5760008515612d235750838201355b600019600387901b1c1916600186901b178355612d95565b600083815260209020601f19861690835b82811015612d6c5786850135825560209485019460019092019101612d4c565b5086821015612d895760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b600060c08284031215612dae57600080fd5b60405160c0810181811067ffffffffffffffff82111715612dd157612dd1612aa1565b806040525080915082358152602083013560208201526040830135612df58161278d565b60408201526060830135612e088161278d565b60608201526080830135612e1b8161278d565b608082015260a092830135920191909152919050565b600060c08284031215612e4357600080fd5b6118a18383612d9c565b60008351612e5f81846020880161272a565b835190830190612e7381836020880161272a565b01949350505050565b600060208284031215612e8e57600080fd5b81516118a18161278d565b6060810160048510612ead57612ead612c4d565b9381526001600160a01b039283166020820152911660409091015290565b600060208284031215612edd57600080fd5b815180151581146118a157600080fd5b600060208284031215612eff57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561080257610802612f06565b968752602087019590955260408601939093526001600160a01b039182166060860152811660808501521660a083015260c082015260e00190565b600082612f8757634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761080257610802612f06565b8082018082111561080257610802612f06565b61ffff818116838216019080821115612fd157612fd1612f06565b5092915050565b60008651612fea818460208b0161272a565b6001600160f81b031960f888811b82169285019283526001600160f01b031960f089901b16600184015286901b166003820152835161303081600484016020880161272a565b0160040197965050505050505056fe486f6c646572526571756573745061796c6f61645f436869704f75744c5a5f556e777261702875696e743235362074696d657374616d702c75696e743235362076616c6964556e74696c2c6164647265737320636869702c6164647265737320686f6c6465722c616464726573732072656365697665722c75696e7432353620616d6f756e7429486f6c646572526571756573745061796c6f61645f436869704f75744c5a2875696e743235362074696d657374616d702c75696e743235362076616c6964556e74696c2c6164647265737320636869702c6164647265737320686f6c6465722c616464726573732072656365697665722c75696e7432353620616d6f756e7429a2646970667358221220f9a44e278017330bb7851e978aaf5646c9974b051e321964cb398b1c77daee5464736f6c63430008180033";
|
|
18
|
+
static readonly abi: readonly [{
|
|
19
|
+
readonly inputs: readonly [{
|
|
20
|
+
readonly internalType: "contract IRegistryV1";
|
|
21
|
+
readonly name: "_registry";
|
|
22
|
+
readonly type: "address";
|
|
23
|
+
}];
|
|
24
|
+
readonly stateMutability: "nonpayable";
|
|
25
|
+
readonly type: "constructor";
|
|
26
|
+
}, {
|
|
27
|
+
readonly inputs: readonly [{
|
|
28
|
+
readonly internalType: "uint16";
|
|
29
|
+
readonly name: "optionType";
|
|
30
|
+
readonly type: "uint16";
|
|
31
|
+
}];
|
|
32
|
+
readonly name: "InvalidOptionType";
|
|
33
|
+
readonly type: "error";
|
|
34
|
+
}, {
|
|
35
|
+
readonly inputs: readonly [{
|
|
36
|
+
readonly internalType: "uint8";
|
|
37
|
+
readonly name: "bits";
|
|
38
|
+
readonly type: "uint8";
|
|
39
|
+
}, {
|
|
40
|
+
readonly internalType: "uint256";
|
|
41
|
+
readonly name: "value";
|
|
42
|
+
readonly type: "uint256";
|
|
43
|
+
}];
|
|
44
|
+
readonly name: "SafeCastOverflowedUintDowncast";
|
|
45
|
+
readonly type: "error";
|
|
46
|
+
}, {
|
|
47
|
+
readonly anonymous: false;
|
|
48
|
+
readonly inputs: readonly [{
|
|
49
|
+
readonly indexed: true;
|
|
50
|
+
readonly internalType: "address";
|
|
51
|
+
readonly name: "chip";
|
|
52
|
+
readonly type: "address";
|
|
53
|
+
}, {
|
|
54
|
+
readonly indexed: false;
|
|
55
|
+
readonly internalType: "uint256";
|
|
56
|
+
readonly name: "fee";
|
|
57
|
+
readonly type: "uint256";
|
|
58
|
+
}];
|
|
59
|
+
readonly name: "ChipOutFeeSet";
|
|
60
|
+
readonly type: "event";
|
|
61
|
+
}, {
|
|
62
|
+
readonly anonymous: false;
|
|
63
|
+
readonly inputs: readonly [{
|
|
64
|
+
readonly indexed: true;
|
|
65
|
+
readonly internalType: "address";
|
|
66
|
+
readonly name: "sender";
|
|
67
|
+
readonly type: "address";
|
|
68
|
+
}, {
|
|
69
|
+
readonly indexed: true;
|
|
70
|
+
readonly internalType: "address";
|
|
71
|
+
readonly name: "chip";
|
|
72
|
+
readonly type: "address";
|
|
73
|
+
}, {
|
|
74
|
+
readonly indexed: true;
|
|
75
|
+
readonly internalType: "address";
|
|
76
|
+
readonly name: "holder";
|
|
77
|
+
readonly type: "address";
|
|
78
|
+
}, {
|
|
79
|
+
readonly indexed: false;
|
|
80
|
+
readonly internalType: "enum ChipsIntentsVerifierV1.ChipsIntentsVerifierActions";
|
|
81
|
+
readonly name: "action";
|
|
82
|
+
readonly type: "uint8";
|
|
83
|
+
}, {
|
|
84
|
+
readonly indexed: false;
|
|
85
|
+
readonly internalType: "uint256";
|
|
86
|
+
readonly name: "amount";
|
|
87
|
+
readonly type: "uint256";
|
|
88
|
+
}, {
|
|
89
|
+
readonly indexed: false;
|
|
90
|
+
readonly internalType: "uint256";
|
|
91
|
+
readonly name: "fee";
|
|
92
|
+
readonly type: "uint256";
|
|
93
|
+
}];
|
|
94
|
+
readonly name: "ChipsIntentVerified";
|
|
95
|
+
readonly type: "event";
|
|
96
|
+
}, {
|
|
97
|
+
readonly anonymous: false;
|
|
98
|
+
readonly inputs: readonly [{
|
|
99
|
+
readonly indexed: true;
|
|
100
|
+
readonly internalType: "uint256";
|
|
101
|
+
readonly name: "chainId";
|
|
102
|
+
readonly type: "uint256";
|
|
103
|
+
}, {
|
|
104
|
+
readonly indexed: false;
|
|
105
|
+
readonly internalType: "bytes32";
|
|
106
|
+
readonly name: "domainSeparator";
|
|
107
|
+
readonly type: "bytes32";
|
|
108
|
+
}];
|
|
109
|
+
readonly name: "DomainSeparatorForChainStored";
|
|
110
|
+
readonly type: "event";
|
|
111
|
+
}, {
|
|
112
|
+
readonly anonymous: false;
|
|
113
|
+
readonly inputs: readonly [{
|
|
114
|
+
readonly indexed: true;
|
|
115
|
+
readonly internalType: "address";
|
|
116
|
+
readonly name: "receiver";
|
|
117
|
+
readonly type: "address";
|
|
118
|
+
}];
|
|
119
|
+
readonly name: "FeesReceiverSet";
|
|
120
|
+
readonly type: "event";
|
|
121
|
+
}, {
|
|
122
|
+
readonly anonymous: false;
|
|
123
|
+
readonly inputs: readonly [{
|
|
124
|
+
readonly indexed: true;
|
|
125
|
+
readonly internalType: "address";
|
|
126
|
+
readonly name: "chip";
|
|
127
|
+
readonly type: "address";
|
|
128
|
+
}, {
|
|
129
|
+
readonly indexed: true;
|
|
130
|
+
readonly internalType: "address";
|
|
131
|
+
readonly name: "holder";
|
|
132
|
+
readonly type: "address";
|
|
133
|
+
}, {
|
|
134
|
+
readonly indexed: false;
|
|
135
|
+
readonly internalType: "enum ChipsIntentsVerifierV1.ChipsIntentsVerifierActions";
|
|
136
|
+
readonly name: "action";
|
|
137
|
+
readonly type: "uint8";
|
|
138
|
+
}, {
|
|
139
|
+
readonly indexed: false;
|
|
140
|
+
readonly internalType: "uint256";
|
|
141
|
+
readonly name: "amount";
|
|
142
|
+
readonly type: "uint256";
|
|
143
|
+
}, {
|
|
144
|
+
readonly indexed: false;
|
|
145
|
+
readonly internalType: "uint256";
|
|
146
|
+
readonly name: "fee";
|
|
147
|
+
readonly type: "uint256";
|
|
148
|
+
}];
|
|
149
|
+
readonly name: "ForceChipOut";
|
|
150
|
+
readonly type: "event";
|
|
151
|
+
}, {
|
|
152
|
+
readonly anonymous: false;
|
|
153
|
+
readonly inputs: readonly [{
|
|
154
|
+
readonly indexed: true;
|
|
155
|
+
readonly internalType: "address";
|
|
156
|
+
readonly name: "chip";
|
|
157
|
+
readonly type: "address";
|
|
158
|
+
}, {
|
|
159
|
+
readonly indexed: true;
|
|
160
|
+
readonly internalType: "address";
|
|
161
|
+
readonly name: "holder";
|
|
162
|
+
readonly type: "address";
|
|
163
|
+
}, {
|
|
164
|
+
readonly indexed: true;
|
|
165
|
+
readonly internalType: "address";
|
|
166
|
+
readonly name: "permissionedAccount";
|
|
167
|
+
readonly type: "address";
|
|
168
|
+
}, {
|
|
169
|
+
readonly indexed: false;
|
|
170
|
+
readonly internalType: "enum ChipsIntentsVerifierV1.ChipsIntentsVerifierActions";
|
|
171
|
+
readonly name: "action";
|
|
172
|
+
readonly type: "uint8";
|
|
173
|
+
}, {
|
|
174
|
+
readonly indexed: false;
|
|
175
|
+
readonly internalType: "uint256";
|
|
176
|
+
readonly name: "amount";
|
|
177
|
+
readonly type: "uint256";
|
|
178
|
+
}, {
|
|
179
|
+
readonly indexed: false;
|
|
180
|
+
readonly internalType: "uint256";
|
|
181
|
+
readonly name: "fee";
|
|
182
|
+
readonly type: "uint256";
|
|
183
|
+
}];
|
|
184
|
+
readonly name: "InteractedOnBehalf";
|
|
185
|
+
readonly type: "event";
|
|
186
|
+
}, {
|
|
187
|
+
readonly anonymous: false;
|
|
188
|
+
readonly inputs: readonly [{
|
|
189
|
+
readonly indexed: true;
|
|
190
|
+
readonly internalType: "uint16";
|
|
191
|
+
readonly name: "evmId";
|
|
192
|
+
readonly type: "uint16";
|
|
193
|
+
}, {
|
|
194
|
+
readonly indexed: true;
|
|
195
|
+
readonly internalType: "uint16";
|
|
196
|
+
readonly name: "lzEid";
|
|
197
|
+
readonly type: "uint16";
|
|
198
|
+
}];
|
|
199
|
+
readonly name: "LzEidSet";
|
|
200
|
+
readonly type: "event";
|
|
201
|
+
}, {
|
|
202
|
+
readonly anonymous: false;
|
|
203
|
+
readonly inputs: readonly [{
|
|
204
|
+
readonly indexed: true;
|
|
205
|
+
readonly internalType: "contract OFT";
|
|
206
|
+
readonly name: "oftChip";
|
|
207
|
+
readonly type: "address";
|
|
208
|
+
}, {
|
|
209
|
+
readonly indexed: true;
|
|
210
|
+
readonly internalType: "contract WrappedNativeOftChipInOutHelper";
|
|
211
|
+
readonly name: "helper";
|
|
212
|
+
readonly type: "address";
|
|
213
|
+
}];
|
|
214
|
+
readonly name: "NativeChipInOutHelperSet";
|
|
215
|
+
readonly type: "event";
|
|
216
|
+
}, {
|
|
217
|
+
readonly anonymous: false;
|
|
218
|
+
readonly inputs: readonly [{
|
|
219
|
+
readonly indexed: false;
|
|
220
|
+
readonly internalType: "address";
|
|
221
|
+
readonly name: "oldAdmin";
|
|
222
|
+
readonly type: "address";
|
|
223
|
+
}, {
|
|
224
|
+
readonly indexed: false;
|
|
225
|
+
readonly internalType: "address";
|
|
226
|
+
readonly name: "newAdmin";
|
|
227
|
+
readonly type: "address";
|
|
228
|
+
}];
|
|
229
|
+
readonly name: "NewAdmin";
|
|
230
|
+
readonly type: "event";
|
|
231
|
+
}, {
|
|
232
|
+
readonly anonymous: false;
|
|
233
|
+
readonly inputs: readonly [{
|
|
234
|
+
readonly indexed: false;
|
|
235
|
+
readonly internalType: "address";
|
|
236
|
+
readonly name: "oldPendingAdmin";
|
|
237
|
+
readonly type: "address";
|
|
238
|
+
}, {
|
|
239
|
+
readonly indexed: false;
|
|
240
|
+
readonly internalType: "address";
|
|
241
|
+
readonly name: "newPendingAdmin";
|
|
242
|
+
readonly type: "address";
|
|
243
|
+
}];
|
|
244
|
+
readonly name: "NewPendingAdmin";
|
|
245
|
+
readonly type: "event";
|
|
246
|
+
}, {
|
|
247
|
+
readonly anonymous: false;
|
|
248
|
+
readonly inputs: readonly [{
|
|
249
|
+
readonly indexed: true;
|
|
250
|
+
readonly internalType: "address";
|
|
251
|
+
readonly name: "asset";
|
|
252
|
+
readonly type: "address";
|
|
253
|
+
}, {
|
|
254
|
+
readonly indexed: true;
|
|
255
|
+
readonly internalType: "uint256";
|
|
256
|
+
readonly name: "chainId";
|
|
257
|
+
readonly type: "uint256";
|
|
258
|
+
}];
|
|
259
|
+
readonly name: "SourceChainIdForAssetStored";
|
|
260
|
+
readonly type: "event";
|
|
261
|
+
}, {
|
|
262
|
+
readonly inputs: readonly [];
|
|
263
|
+
readonly name: "CONTRACT_DOMAIN_NAME";
|
|
264
|
+
readonly outputs: readonly [{
|
|
265
|
+
readonly internalType: "string";
|
|
266
|
+
readonly name: "";
|
|
267
|
+
readonly type: "string";
|
|
268
|
+
}];
|
|
269
|
+
readonly stateMutability: "view";
|
|
270
|
+
readonly type: "function";
|
|
271
|
+
}, {
|
|
272
|
+
readonly inputs: readonly [];
|
|
273
|
+
readonly name: "CONTRACT_DOMAIN_VERSION";
|
|
274
|
+
readonly outputs: readonly [{
|
|
275
|
+
readonly internalType: "string";
|
|
276
|
+
readonly name: "";
|
|
277
|
+
readonly type: "string";
|
|
278
|
+
}];
|
|
279
|
+
readonly stateMutability: "view";
|
|
280
|
+
readonly type: "function";
|
|
281
|
+
}, {
|
|
282
|
+
readonly inputs: readonly [];
|
|
283
|
+
readonly name: "DYN_ROLE_INTENTS_PERMISSIONS_PREFIX";
|
|
284
|
+
readonly outputs: readonly [{
|
|
285
|
+
readonly internalType: "string";
|
|
286
|
+
readonly name: "";
|
|
287
|
+
readonly type: "string";
|
|
288
|
+
}];
|
|
289
|
+
readonly stateMutability: "view";
|
|
290
|
+
readonly type: "function";
|
|
291
|
+
}, {
|
|
292
|
+
readonly inputs: readonly [];
|
|
293
|
+
readonly name: "EIP712DOMAIN_TYPEHASH";
|
|
294
|
+
readonly outputs: readonly [{
|
|
295
|
+
readonly internalType: "bytes32";
|
|
296
|
+
readonly name: "";
|
|
297
|
+
readonly type: "bytes32";
|
|
298
|
+
}];
|
|
299
|
+
readonly stateMutability: "view";
|
|
300
|
+
readonly type: "function";
|
|
301
|
+
}, {
|
|
302
|
+
readonly inputs: readonly [];
|
|
303
|
+
readonly name: "REQUEST_PAYLOAD_CHIP_OUT_LZ_TYPE_DESCRIPTOR";
|
|
304
|
+
readonly outputs: readonly [{
|
|
305
|
+
readonly internalType: "string";
|
|
306
|
+
readonly name: "";
|
|
307
|
+
readonly type: "string";
|
|
308
|
+
}];
|
|
309
|
+
readonly stateMutability: "view";
|
|
310
|
+
readonly type: "function";
|
|
311
|
+
}, {
|
|
312
|
+
readonly inputs: readonly [];
|
|
313
|
+
readonly name: "REQUEST_PAYLOAD_CHIP_OUT_LZ_UNWRAP_TYPE_DESCRIPTOR";
|
|
314
|
+
readonly outputs: readonly [{
|
|
315
|
+
readonly internalType: "string";
|
|
316
|
+
readonly name: "";
|
|
317
|
+
readonly type: "string";
|
|
318
|
+
}];
|
|
319
|
+
readonly stateMutability: "view";
|
|
320
|
+
readonly type: "function";
|
|
321
|
+
}, {
|
|
322
|
+
readonly inputs: readonly [];
|
|
323
|
+
readonly name: "_acceptAdmin";
|
|
324
|
+
readonly outputs: readonly [];
|
|
325
|
+
readonly stateMutability: "nonpayable";
|
|
326
|
+
readonly type: "function";
|
|
327
|
+
}, {
|
|
328
|
+
readonly inputs: readonly [];
|
|
329
|
+
readonly name: "_msgSender";
|
|
330
|
+
readonly outputs: readonly [{
|
|
331
|
+
readonly internalType: "address";
|
|
332
|
+
readonly name: "";
|
|
333
|
+
readonly type: "address";
|
|
334
|
+
}];
|
|
335
|
+
readonly stateMutability: "view";
|
|
336
|
+
readonly type: "function";
|
|
337
|
+
}, {
|
|
338
|
+
readonly inputs: readonly [{
|
|
339
|
+
readonly internalType: "address";
|
|
340
|
+
readonly name: "newPendingAdmin";
|
|
341
|
+
readonly type: "address";
|
|
342
|
+
}];
|
|
343
|
+
readonly name: "_setPendingAdmin";
|
|
344
|
+
readonly outputs: readonly [];
|
|
345
|
+
readonly stateMutability: "nonpayable";
|
|
346
|
+
readonly type: "function";
|
|
347
|
+
}, {
|
|
348
|
+
readonly inputs: readonly [];
|
|
349
|
+
readonly name: "admin";
|
|
350
|
+
readonly outputs: readonly [{
|
|
351
|
+
readonly internalType: "address";
|
|
352
|
+
readonly name: "";
|
|
353
|
+
readonly type: "address";
|
|
354
|
+
}];
|
|
355
|
+
readonly stateMutability: "view";
|
|
356
|
+
readonly type: "function";
|
|
357
|
+
}, {
|
|
358
|
+
readonly inputs: readonly [{
|
|
359
|
+
readonly internalType: "address";
|
|
360
|
+
readonly name: "";
|
|
361
|
+
readonly type: "address";
|
|
362
|
+
}];
|
|
363
|
+
readonly name: "chipOutFeeForChip";
|
|
364
|
+
readonly outputs: readonly [{
|
|
365
|
+
readonly internalType: "uint256";
|
|
366
|
+
readonly name: "";
|
|
367
|
+
readonly type: "uint256";
|
|
368
|
+
}];
|
|
369
|
+
readonly stateMutability: "view";
|
|
370
|
+
readonly type: "function";
|
|
371
|
+
}, {
|
|
372
|
+
readonly inputs: readonly [{
|
|
373
|
+
readonly internalType: "address";
|
|
374
|
+
readonly name: "asset";
|
|
375
|
+
readonly type: "address";
|
|
376
|
+
}];
|
|
377
|
+
readonly name: "domainSeparatorForAsset";
|
|
378
|
+
readonly outputs: readonly [{
|
|
379
|
+
readonly internalType: "bytes32";
|
|
380
|
+
readonly name: "";
|
|
381
|
+
readonly type: "bytes32";
|
|
382
|
+
}];
|
|
383
|
+
readonly stateMutability: "view";
|
|
384
|
+
readonly type: "function";
|
|
385
|
+
}, {
|
|
386
|
+
readonly inputs: readonly [{
|
|
387
|
+
readonly internalType: "uint256";
|
|
388
|
+
readonly name: "";
|
|
389
|
+
readonly type: "uint256";
|
|
390
|
+
}];
|
|
391
|
+
readonly name: "domainSeparatorForChain";
|
|
392
|
+
readonly outputs: readonly [{
|
|
393
|
+
readonly internalType: "bytes32";
|
|
394
|
+
readonly name: "";
|
|
395
|
+
readonly type: "bytes32";
|
|
396
|
+
}];
|
|
397
|
+
readonly stateMutability: "view";
|
|
398
|
+
readonly type: "function";
|
|
399
|
+
}, {
|
|
400
|
+
readonly inputs: readonly [{
|
|
401
|
+
readonly internalType: "uint16";
|
|
402
|
+
readonly name: "";
|
|
403
|
+
readonly type: "uint16";
|
|
404
|
+
}];
|
|
405
|
+
readonly name: "evmIdToLzEid";
|
|
406
|
+
readonly outputs: readonly [{
|
|
407
|
+
readonly internalType: "uint16";
|
|
408
|
+
readonly name: "";
|
|
409
|
+
readonly type: "uint16";
|
|
410
|
+
}];
|
|
411
|
+
readonly stateMutability: "view";
|
|
412
|
+
readonly type: "function";
|
|
413
|
+
}, {
|
|
414
|
+
readonly inputs: readonly [];
|
|
415
|
+
readonly name: "feesReceiver";
|
|
416
|
+
readonly outputs: readonly [{
|
|
417
|
+
readonly internalType: "address";
|
|
418
|
+
readonly name: "";
|
|
419
|
+
readonly type: "address";
|
|
420
|
+
}];
|
|
421
|
+
readonly stateMutability: "view";
|
|
422
|
+
readonly type: "function";
|
|
423
|
+
}, {
|
|
424
|
+
readonly inputs: readonly [{
|
|
425
|
+
readonly internalType: "address";
|
|
426
|
+
readonly name: "chip";
|
|
427
|
+
readonly type: "address";
|
|
428
|
+
}, {
|
|
429
|
+
readonly internalType: "address";
|
|
430
|
+
readonly name: "holder";
|
|
431
|
+
readonly type: "address";
|
|
432
|
+
}, {
|
|
433
|
+
readonly internalType: "uint256";
|
|
434
|
+
readonly name: "amount";
|
|
435
|
+
readonly type: "uint256";
|
|
436
|
+
}];
|
|
437
|
+
readonly name: "forceChipOut";
|
|
438
|
+
readonly outputs: readonly [];
|
|
439
|
+
readonly stateMutability: "payable";
|
|
440
|
+
readonly type: "function";
|
|
441
|
+
}, {
|
|
442
|
+
readonly inputs: readonly [{
|
|
443
|
+
readonly internalType: "address";
|
|
444
|
+
readonly name: "chip";
|
|
445
|
+
readonly type: "address";
|
|
446
|
+
}];
|
|
447
|
+
readonly name: "getLZDstChainIdFromChip";
|
|
448
|
+
readonly outputs: readonly [{
|
|
449
|
+
readonly internalType: "uint16";
|
|
450
|
+
readonly name: "";
|
|
451
|
+
readonly type: "uint16";
|
|
452
|
+
}];
|
|
453
|
+
readonly stateMutability: "view";
|
|
454
|
+
readonly type: "function";
|
|
455
|
+
}, {
|
|
456
|
+
readonly inputs: readonly [{
|
|
457
|
+
readonly internalType: "uint16";
|
|
458
|
+
readonly name: "evmChainId";
|
|
459
|
+
readonly type: "uint16";
|
|
460
|
+
}];
|
|
461
|
+
readonly name: "getLZDstChainIdFromEvmChainId";
|
|
462
|
+
readonly outputs: readonly [{
|
|
463
|
+
readonly internalType: "uint16";
|
|
464
|
+
readonly name: "";
|
|
465
|
+
readonly type: "uint16";
|
|
466
|
+
}];
|
|
467
|
+
readonly stateMutability: "view";
|
|
468
|
+
readonly type: "function";
|
|
469
|
+
}, {
|
|
470
|
+
readonly inputs: readonly [{
|
|
471
|
+
readonly internalType: "contract OFT";
|
|
472
|
+
readonly name: "oftChip";
|
|
473
|
+
readonly type: "address";
|
|
474
|
+
}];
|
|
475
|
+
readonly name: "getWrapNativeChipInOutHelper";
|
|
476
|
+
readonly outputs: readonly [{
|
|
477
|
+
readonly internalType: "contract WrappedNativeOftChipInOutHelper";
|
|
478
|
+
readonly name: "";
|
|
479
|
+
readonly type: "address";
|
|
480
|
+
}];
|
|
481
|
+
readonly stateMutability: "view";
|
|
482
|
+
readonly type: "function";
|
|
483
|
+
}, {
|
|
484
|
+
readonly inputs: readonly [{
|
|
485
|
+
readonly internalType: "contract OFTChip";
|
|
486
|
+
readonly name: "";
|
|
487
|
+
readonly type: "address";
|
|
488
|
+
}];
|
|
489
|
+
readonly name: "intentsPermissions";
|
|
490
|
+
readonly outputs: readonly [{
|
|
491
|
+
readonly internalType: "string";
|
|
492
|
+
readonly name: "";
|
|
493
|
+
readonly type: "string";
|
|
494
|
+
}];
|
|
495
|
+
readonly stateMutability: "view";
|
|
496
|
+
readonly type: "function";
|
|
497
|
+
}, {
|
|
498
|
+
readonly inputs: readonly [{
|
|
499
|
+
readonly internalType: "address";
|
|
500
|
+
readonly name: "chip";
|
|
501
|
+
readonly type: "address";
|
|
502
|
+
}, {
|
|
503
|
+
readonly internalType: "address";
|
|
504
|
+
readonly name: "holder";
|
|
505
|
+
readonly type: "address";
|
|
506
|
+
}, {
|
|
507
|
+
readonly internalType: "uint256";
|
|
508
|
+
readonly name: "amount";
|
|
509
|
+
readonly type: "uint256";
|
|
510
|
+
}];
|
|
511
|
+
readonly name: "interactOnBehalf_chipOut";
|
|
512
|
+
readonly outputs: readonly [];
|
|
513
|
+
readonly stateMutability: "payable";
|
|
514
|
+
readonly type: "function";
|
|
515
|
+
}, {
|
|
516
|
+
readonly inputs: readonly [];
|
|
517
|
+
readonly name: "pendingAdmin";
|
|
518
|
+
readonly outputs: readonly [{
|
|
519
|
+
readonly internalType: "address";
|
|
520
|
+
readonly name: "";
|
|
521
|
+
readonly type: "address";
|
|
522
|
+
}];
|
|
523
|
+
readonly stateMutability: "view";
|
|
524
|
+
readonly type: "function";
|
|
525
|
+
}, {
|
|
526
|
+
readonly inputs: readonly [{
|
|
527
|
+
readonly internalType: "bytes32";
|
|
528
|
+
readonly name: "";
|
|
529
|
+
readonly type: "bytes32";
|
|
530
|
+
}];
|
|
531
|
+
readonly name: "processedSignatures";
|
|
532
|
+
readonly outputs: readonly [{
|
|
533
|
+
readonly internalType: "bool";
|
|
534
|
+
readonly name: "";
|
|
535
|
+
readonly type: "bool";
|
|
536
|
+
}];
|
|
537
|
+
readonly stateMutability: "view";
|
|
538
|
+
readonly type: "function";
|
|
539
|
+
}, {
|
|
540
|
+
readonly inputs: readonly [{
|
|
541
|
+
readonly components: readonly [{
|
|
542
|
+
readonly internalType: "uint256";
|
|
543
|
+
readonly name: "timestamp";
|
|
544
|
+
readonly type: "uint256";
|
|
545
|
+
}, {
|
|
546
|
+
readonly internalType: "uint256";
|
|
547
|
+
readonly name: "validUntil";
|
|
548
|
+
readonly type: "uint256";
|
|
549
|
+
}, {
|
|
550
|
+
readonly internalType: "address";
|
|
551
|
+
readonly name: "chip";
|
|
552
|
+
readonly type: "address";
|
|
553
|
+
}, {
|
|
554
|
+
readonly internalType: "address";
|
|
555
|
+
readonly name: "holder";
|
|
556
|
+
readonly type: "address";
|
|
557
|
+
}, {
|
|
558
|
+
readonly internalType: "address";
|
|
559
|
+
readonly name: "receiver";
|
|
560
|
+
readonly type: "address";
|
|
561
|
+
}, {
|
|
562
|
+
readonly internalType: "uint256";
|
|
563
|
+
readonly name: "amount";
|
|
564
|
+
readonly type: "uint256";
|
|
565
|
+
}];
|
|
566
|
+
readonly internalType: "struct ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ";
|
|
567
|
+
readonly name: "payload";
|
|
568
|
+
readonly type: "tuple";
|
|
569
|
+
}, {
|
|
570
|
+
readonly internalType: "uint8";
|
|
571
|
+
readonly name: "v";
|
|
572
|
+
readonly type: "uint8";
|
|
573
|
+
}, {
|
|
574
|
+
readonly internalType: "bytes32";
|
|
575
|
+
readonly name: "r";
|
|
576
|
+
readonly type: "bytes32";
|
|
577
|
+
}, {
|
|
578
|
+
readonly internalType: "bytes32";
|
|
579
|
+
readonly name: "s";
|
|
580
|
+
readonly type: "bytes32";
|
|
581
|
+
}, {
|
|
582
|
+
readonly internalType: "bytes32";
|
|
583
|
+
readonly name: "domainSeparator";
|
|
584
|
+
readonly type: "bytes32";
|
|
585
|
+
}];
|
|
586
|
+
readonly name: "recoverChipOutLZPayloadSigner";
|
|
587
|
+
readonly outputs: readonly [{
|
|
588
|
+
readonly internalType: "address";
|
|
589
|
+
readonly name: "";
|
|
590
|
+
readonly type: "address";
|
|
591
|
+
}];
|
|
592
|
+
readonly stateMutability: "pure";
|
|
593
|
+
readonly type: "function";
|
|
594
|
+
}, {
|
|
595
|
+
readonly inputs: readonly [{
|
|
596
|
+
readonly components: readonly [{
|
|
597
|
+
readonly internalType: "uint256";
|
|
598
|
+
readonly name: "timestamp";
|
|
599
|
+
readonly type: "uint256";
|
|
600
|
+
}, {
|
|
601
|
+
readonly internalType: "uint256";
|
|
602
|
+
readonly name: "validUntil";
|
|
603
|
+
readonly type: "uint256";
|
|
604
|
+
}, {
|
|
605
|
+
readonly internalType: "address";
|
|
606
|
+
readonly name: "chip";
|
|
607
|
+
readonly type: "address";
|
|
608
|
+
}, {
|
|
609
|
+
readonly internalType: "address";
|
|
610
|
+
readonly name: "holder";
|
|
611
|
+
readonly type: "address";
|
|
612
|
+
}, {
|
|
613
|
+
readonly internalType: "address";
|
|
614
|
+
readonly name: "receiver";
|
|
615
|
+
readonly type: "address";
|
|
616
|
+
}, {
|
|
617
|
+
readonly internalType: "uint256";
|
|
618
|
+
readonly name: "amount";
|
|
619
|
+
readonly type: "uint256";
|
|
620
|
+
}];
|
|
621
|
+
readonly internalType: "struct ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ_Unwrap";
|
|
622
|
+
readonly name: "payload";
|
|
623
|
+
readonly type: "tuple";
|
|
624
|
+
}, {
|
|
625
|
+
readonly internalType: "uint8";
|
|
626
|
+
readonly name: "v";
|
|
627
|
+
readonly type: "uint8";
|
|
628
|
+
}, {
|
|
629
|
+
readonly internalType: "bytes32";
|
|
630
|
+
readonly name: "r";
|
|
631
|
+
readonly type: "bytes32";
|
|
632
|
+
}, {
|
|
633
|
+
readonly internalType: "bytes32";
|
|
634
|
+
readonly name: "s";
|
|
635
|
+
readonly type: "bytes32";
|
|
636
|
+
}, {
|
|
637
|
+
readonly internalType: "bytes32";
|
|
638
|
+
readonly name: "domainSeparator";
|
|
639
|
+
readonly type: "bytes32";
|
|
640
|
+
}];
|
|
641
|
+
readonly name: "recoverChipOutLZUnwrapPayloadSigner";
|
|
642
|
+
readonly outputs: readonly [{
|
|
643
|
+
readonly internalType: "address";
|
|
644
|
+
readonly name: "";
|
|
645
|
+
readonly type: "address";
|
|
646
|
+
}];
|
|
647
|
+
readonly stateMutability: "pure";
|
|
648
|
+
readonly type: "function";
|
|
649
|
+
}, {
|
|
650
|
+
readonly inputs: readonly [];
|
|
651
|
+
readonly name: "registry";
|
|
652
|
+
readonly outputs: readonly [{
|
|
653
|
+
readonly internalType: "contract IRegistryV1";
|
|
654
|
+
readonly name: "";
|
|
655
|
+
readonly type: "address";
|
|
656
|
+
}];
|
|
657
|
+
readonly stateMutability: "view";
|
|
658
|
+
readonly type: "function";
|
|
659
|
+
}, {
|
|
660
|
+
readonly inputs: readonly [{
|
|
661
|
+
readonly internalType: "address";
|
|
662
|
+
readonly name: "chip";
|
|
663
|
+
readonly type: "address";
|
|
664
|
+
}, {
|
|
665
|
+
readonly internalType: "uint256";
|
|
666
|
+
readonly name: "fee";
|
|
667
|
+
readonly type: "uint256";
|
|
668
|
+
}];
|
|
669
|
+
readonly name: "setChipOutFee";
|
|
670
|
+
readonly outputs: readonly [];
|
|
671
|
+
readonly stateMutability: "nonpayable";
|
|
672
|
+
readonly type: "function";
|
|
673
|
+
}, {
|
|
674
|
+
readonly inputs: readonly [{
|
|
675
|
+
readonly internalType: "address";
|
|
676
|
+
readonly name: "receiver";
|
|
677
|
+
readonly type: "address";
|
|
678
|
+
}];
|
|
679
|
+
readonly name: "setFeesReceiver";
|
|
680
|
+
readonly outputs: readonly [];
|
|
681
|
+
readonly stateMutability: "nonpayable";
|
|
682
|
+
readonly type: "function";
|
|
683
|
+
}, {
|
|
684
|
+
readonly inputs: readonly [{
|
|
685
|
+
readonly internalType: "contract OFTChip";
|
|
686
|
+
readonly name: "oftChip";
|
|
687
|
+
readonly type: "address";
|
|
688
|
+
}, {
|
|
689
|
+
readonly internalType: "string";
|
|
690
|
+
readonly name: "dynAddressSuffix";
|
|
691
|
+
readonly type: "string";
|
|
692
|
+
}];
|
|
693
|
+
readonly name: "setIntentsPermissions";
|
|
694
|
+
readonly outputs: readonly [];
|
|
695
|
+
readonly stateMutability: "nonpayable";
|
|
696
|
+
readonly type: "function";
|
|
697
|
+
}, {
|
|
698
|
+
readonly inputs: readonly [{
|
|
699
|
+
readonly internalType: "uint16";
|
|
700
|
+
readonly name: "evmId";
|
|
701
|
+
readonly type: "uint16";
|
|
702
|
+
}, {
|
|
703
|
+
readonly internalType: "uint16";
|
|
704
|
+
readonly name: "lzEid";
|
|
705
|
+
readonly type: "uint16";
|
|
706
|
+
}];
|
|
707
|
+
readonly name: "setLzEndpointId";
|
|
708
|
+
readonly outputs: readonly [];
|
|
709
|
+
readonly stateMutability: "nonpayable";
|
|
710
|
+
readonly type: "function";
|
|
711
|
+
}, {
|
|
712
|
+
readonly inputs: readonly [{
|
|
713
|
+
readonly internalType: "contract OFT";
|
|
714
|
+
readonly name: "oftChip";
|
|
715
|
+
readonly type: "address";
|
|
716
|
+
}, {
|
|
717
|
+
readonly internalType: "contract WrappedNativeOftChipInOutHelper";
|
|
718
|
+
readonly name: "_wrapNativeChipInOutHelper";
|
|
719
|
+
readonly type: "address";
|
|
720
|
+
}];
|
|
721
|
+
readonly name: "setWrapNativeChipInOutHelper";
|
|
722
|
+
readonly outputs: readonly [];
|
|
723
|
+
readonly stateMutability: "nonpayable";
|
|
724
|
+
readonly type: "function";
|
|
725
|
+
}, {
|
|
726
|
+
readonly inputs: readonly [{
|
|
727
|
+
readonly internalType: "address";
|
|
728
|
+
readonly name: "";
|
|
729
|
+
readonly type: "address";
|
|
730
|
+
}];
|
|
731
|
+
readonly name: "sourceChainIdForAsset";
|
|
732
|
+
readonly outputs: readonly [{
|
|
733
|
+
readonly internalType: "uint256";
|
|
734
|
+
readonly name: "";
|
|
735
|
+
readonly type: "uint256";
|
|
736
|
+
}];
|
|
737
|
+
readonly stateMutability: "view";
|
|
738
|
+
readonly type: "function";
|
|
739
|
+
}, {
|
|
740
|
+
readonly inputs: readonly [{
|
|
741
|
+
readonly internalType: "address";
|
|
742
|
+
readonly name: "asset";
|
|
743
|
+
readonly type: "address";
|
|
744
|
+
}, {
|
|
745
|
+
readonly internalType: "uint256";
|
|
746
|
+
readonly name: "chainId";
|
|
747
|
+
readonly type: "uint256";
|
|
748
|
+
}];
|
|
749
|
+
readonly name: "storeSourceChainForAsset";
|
|
750
|
+
readonly outputs: readonly [];
|
|
751
|
+
readonly stateMutability: "nonpayable";
|
|
752
|
+
readonly type: "function";
|
|
753
|
+
}, {
|
|
754
|
+
readonly inputs: readonly [{
|
|
755
|
+
readonly components: readonly [{
|
|
756
|
+
readonly internalType: "uint256";
|
|
757
|
+
readonly name: "timestamp";
|
|
758
|
+
readonly type: "uint256";
|
|
759
|
+
}, {
|
|
760
|
+
readonly internalType: "uint256";
|
|
761
|
+
readonly name: "validUntil";
|
|
762
|
+
readonly type: "uint256";
|
|
763
|
+
}, {
|
|
764
|
+
readonly internalType: "address";
|
|
765
|
+
readonly name: "chip";
|
|
766
|
+
readonly type: "address";
|
|
767
|
+
}, {
|
|
768
|
+
readonly internalType: "address";
|
|
769
|
+
readonly name: "holder";
|
|
770
|
+
readonly type: "address";
|
|
771
|
+
}, {
|
|
772
|
+
readonly internalType: "address";
|
|
773
|
+
readonly name: "receiver";
|
|
774
|
+
readonly type: "address";
|
|
775
|
+
}, {
|
|
776
|
+
readonly internalType: "uint256";
|
|
777
|
+
readonly name: "amount";
|
|
778
|
+
readonly type: "uint256";
|
|
779
|
+
}];
|
|
780
|
+
readonly internalType: "struct ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ";
|
|
781
|
+
readonly name: "payload";
|
|
782
|
+
readonly type: "tuple";
|
|
783
|
+
}, {
|
|
784
|
+
readonly internalType: "uint8";
|
|
785
|
+
readonly name: "v";
|
|
786
|
+
readonly type: "uint8";
|
|
787
|
+
}, {
|
|
788
|
+
readonly internalType: "bytes32";
|
|
789
|
+
readonly name: "r";
|
|
790
|
+
readonly type: "bytes32";
|
|
791
|
+
}, {
|
|
792
|
+
readonly internalType: "bytes32";
|
|
793
|
+
readonly name: "s";
|
|
794
|
+
readonly type: "bytes32";
|
|
795
|
+
}];
|
|
796
|
+
readonly name: "verifyIntent_chipOut";
|
|
797
|
+
readonly outputs: readonly [];
|
|
798
|
+
readonly stateMutability: "payable";
|
|
799
|
+
readonly type: "function";
|
|
800
|
+
}, {
|
|
801
|
+
readonly inputs: readonly [{
|
|
802
|
+
readonly components: readonly [{
|
|
803
|
+
readonly internalType: "uint256";
|
|
804
|
+
readonly name: "timestamp";
|
|
805
|
+
readonly type: "uint256";
|
|
806
|
+
}, {
|
|
807
|
+
readonly internalType: "uint256";
|
|
808
|
+
readonly name: "validUntil";
|
|
809
|
+
readonly type: "uint256";
|
|
810
|
+
}, {
|
|
811
|
+
readonly internalType: "address";
|
|
812
|
+
readonly name: "chip";
|
|
813
|
+
readonly type: "address";
|
|
814
|
+
}, {
|
|
815
|
+
readonly internalType: "address";
|
|
816
|
+
readonly name: "holder";
|
|
817
|
+
readonly type: "address";
|
|
818
|
+
}, {
|
|
819
|
+
readonly internalType: "address";
|
|
820
|
+
readonly name: "receiver";
|
|
821
|
+
readonly type: "address";
|
|
822
|
+
}, {
|
|
823
|
+
readonly internalType: "uint256";
|
|
824
|
+
readonly name: "amount";
|
|
825
|
+
readonly type: "uint256";
|
|
826
|
+
}];
|
|
827
|
+
readonly internalType: "struct ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ_Unwrap";
|
|
828
|
+
readonly name: "payload";
|
|
829
|
+
readonly type: "tuple";
|
|
830
|
+
}, {
|
|
831
|
+
readonly internalType: "uint8";
|
|
832
|
+
readonly name: "v";
|
|
833
|
+
readonly type: "uint8";
|
|
834
|
+
}, {
|
|
835
|
+
readonly internalType: "bytes32";
|
|
836
|
+
readonly name: "r";
|
|
837
|
+
readonly type: "bytes32";
|
|
838
|
+
}, {
|
|
839
|
+
readonly internalType: "bytes32";
|
|
840
|
+
readonly name: "s";
|
|
841
|
+
readonly type: "bytes32";
|
|
842
|
+
}];
|
|
843
|
+
readonly name: "verifyIntent_chipOutAndUnwrap";
|
|
844
|
+
readonly outputs: readonly [];
|
|
845
|
+
readonly stateMutability: "payable";
|
|
846
|
+
readonly type: "function";
|
|
847
|
+
}, {
|
|
848
|
+
readonly inputs: readonly [{
|
|
849
|
+
readonly internalType: "contract OFT";
|
|
850
|
+
readonly name: "";
|
|
851
|
+
readonly type: "address";
|
|
852
|
+
}];
|
|
853
|
+
readonly name: "wrapNativeChipInOutHelpers";
|
|
854
|
+
readonly outputs: readonly [{
|
|
855
|
+
readonly internalType: "contract WrappedNativeOftChipInOutHelper";
|
|
856
|
+
readonly name: "";
|
|
857
|
+
readonly type: "address";
|
|
858
|
+
}];
|
|
859
|
+
readonly stateMutability: "view";
|
|
860
|
+
readonly type: "function";
|
|
861
|
+
}];
|
|
862
|
+
static createInterface(): ChipsIntentsVerifierV1Interface;
|
|
863
|
+
static connect(address: string, runner?: ContractRunner | null): ChipsIntentsVerifierV1;
|
|
864
|
+
}
|
|
865
|
+
export {};
|
|
866
|
+
//# sourceMappingURL=ChipsIntentsVerifierV1__factory.d.ts.map
|