-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:darkforestry/dcfmms-rs
- Loading branch information
Showing
17 changed files
with
8,872 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
//SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
|
||
interface IiZiSwapPool { | ||
function liquidity(bytes32 key) | ||
external | ||
view | ||
returns ( | ||
uint128 liquidity, | ||
uint256 lastFeeScaleX_128, | ||
uint256 lastFeeScaleY_128, | ||
uint256 tokenOwedX, | ||
uint256 tokenOwedY | ||
); | ||
|
||
function tokenX() external view returns (address); | ||
function tokenY() external view returns (address); | ||
|
||
function sqrtRate_96() external view returns(uint160); | ||
function fee() external view returns (uint24); | ||
function pointDelta() external view returns (int24); | ||
function state() | ||
external view | ||
returns( | ||
uint160 sqrtPrice_96, | ||
int24 currentPoint, | ||
uint16 observationCurrentIndex, | ||
uint16 observationQueueLen, | ||
uint16 observationNextQueueLen, | ||
bool locked, | ||
uint128 liquidity, | ||
uint128 liquidityX | ||
); | ||
} | ||
/** | ||
@dev This contract is not meant to be deployed. Instead, use a static call with the | ||
deployment bytecode as payload. | ||
*/ | ||
contract GetiZiPoolDataBatchRequest { | ||
struct PoolData { | ||
address tokenA; | ||
uint8 tokenADecimals; | ||
address tokenB; | ||
uint8 tokenBDecimals; | ||
uint128 liquidity; | ||
uint160 sqrtPrice; | ||
uint128 liquidityA; | ||
uint128 liquidityB; | ||
int24 currentPoint; | ||
int24 pointDelta; | ||
uint24 fee; | ||
} | ||
|
||
constructor(address[] memory pools) { | ||
PoolData[] memory allPoolData = new PoolData[](pools.length); | ||
|
||
for (uint256 i = 0; i < pools.length; ++i) { | ||
address poolAddress = pools[i]; | ||
|
||
if (codeSizeIsZero(poolAddress)) continue; | ||
|
||
PoolData memory poolData; | ||
|
||
poolData.tokenA = IiZiSwapPool(poolAddress).tokenX(); | ||
poolData.tokenB = IiZiSwapPool(poolAddress).tokenY(); | ||
|
||
//Check that tokenA and tokenB do not have codesize of 0 | ||
if (codeSizeIsZero(poolData.tokenA)) continue; | ||
if (codeSizeIsZero(poolData.tokenB)) continue; | ||
|
||
//Get tokenA decimals | ||
( | ||
bool tokenADecimalsSuccess, | ||
bytes memory tokenADecimalsData | ||
) = poolData.tokenA.call(abi.encodeWithSignature("decimals()")); | ||
|
||
if (tokenADecimalsSuccess) { | ||
uint256 tokenADecimals; | ||
|
||
if (tokenADecimalsData.length == 32) { | ||
(tokenADecimals) = abi.decode( | ||
tokenADecimalsData, | ||
(uint256) | ||
); | ||
|
||
if (tokenADecimals == 0 || tokenADecimals > 255) { | ||
continue; | ||
} else { | ||
poolData.tokenADecimals = uint8(tokenADecimals); | ||
} | ||
} else { | ||
continue; | ||
} | ||
} else { | ||
continue; | ||
} | ||
|
||
( | ||
bool tokenBDecimalsSuccess, | ||
bytes memory tokenBDecimalsData | ||
) = poolData.tokenB.call(abi.encodeWithSignature("decimals()")); | ||
|
||
if (tokenBDecimalsSuccess) { | ||
uint256 tokenBDecimals; | ||
if (tokenBDecimalsData.length == 32) { | ||
(tokenBDecimals) = abi.decode( | ||
tokenBDecimalsData, | ||
(uint256) | ||
); | ||
|
||
if (tokenBDecimals == 0 || tokenBDecimals > 255) { | ||
continue; | ||
} else { | ||
poolData.tokenBDecimals = uint8(tokenBDecimals); | ||
} | ||
} else { | ||
continue; | ||
} | ||
} else { | ||
continue; | ||
} | ||
|
||
(uint160 sqrtPriceX96, int24 currentPoint, , , , , uint128 liquidity, uint128 liquidityX) = IiZiSwapPool( | ||
poolAddress | ||
).state(); | ||
|
||
|
||
poolData.fee = IiZiSwapPool(poolAddress).fee(); | ||
poolData.pointDelta = IiZiSwapPool(poolAddress).pointDelta(); | ||
poolData.sqrtPrice = sqrtPriceX96; | ||
poolData.currentPoint = currentPoint; | ||
poolData.liquidity = liquidity; | ||
poolData.liquidityA = liquidityX; | ||
poolData.liquidityB = liquidity - liquidityX; | ||
allPoolData[i] = poolData; | ||
} | ||
|
||
bytes memory _abiEncodedData = abi.encode(allPoolData); | ||
assembly { | ||
// Return from the start of the data (discarding the original data address) | ||
// up to the end of the memory used | ||
let dataStart := add(_abiEncodedData, 0x20) | ||
return(dataStart, sub(msize(), dataStart)) | ||
} | ||
} | ||
|
||
function codeSizeIsZero(address target) internal view returns (bool) { | ||
if (target.code.length == 0) { | ||
return true; | ||
} else { | ||
return false; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
//SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
|
||
interface IiZiSwapPool { | ||
function liquidity( | ||
bytes32 key | ||
) | ||
external | ||
view | ||
returns ( | ||
uint128 liquidity, | ||
uint256 lastFeeScaleX_128, | ||
uint256 lastFeeScaleY_128, | ||
uint256 tokenOwedX, | ||
uint256 tokenOwedY | ||
); | ||
|
||
function tokenX() external view returns (address); | ||
|
||
function tokenY() external view returns (address); | ||
|
||
function sqrtRate_96() external view returns (uint160); | ||
|
||
function fee() external view returns (uint24); | ||
|
||
function pointDelta() external view returns (int24); | ||
|
||
function state() | ||
external | ||
view | ||
returns ( | ||
uint160 sqrtPrice_96, | ||
int24 currentPoint, | ||
uint16 observationCurrentIndex, | ||
uint16 observationQueueLen, | ||
uint16 observationNextQueueLen, | ||
bool locked, | ||
uint128 liquidity, | ||
uint128 liquidityX | ||
); | ||
} | ||
|
||
/** | ||
@dev This contract is not meant to be deployed. Instead, use a static call with the | ||
deployment bytecode as payload. | ||
*/ | ||
contract SynciZiPoolDataBatchRequest { | ||
struct PoolData { | ||
uint128 liquidity; | ||
uint160 sqrtPrice; | ||
uint128 liquidityA; | ||
uint128 liquidityB; | ||
int24 currentPoint; | ||
} | ||
|
||
constructor(address[] memory pools) { | ||
PoolData[] memory allPoolData = new PoolData[](pools.length); | ||
|
||
for (uint256 i = 0; i < pools.length; ++i) { | ||
address poolAddress = pools[i]; | ||
|
||
if (codeSizeIsZero(poolAddress)) continue; | ||
|
||
PoolData memory poolData; | ||
|
||
( | ||
uint160 sqrtPriceX96, | ||
int24 currentPoint, | ||
, | ||
, | ||
, | ||
, | ||
uint128 liquidity, | ||
uint128 liquidityX | ||
) = IiZiSwapPool(poolAddress).state(); | ||
|
||
poolData.sqrtPrice = sqrtPriceX96; | ||
poolData.currentPoint = currentPoint; | ||
poolData.liquidity = liquidity; | ||
poolData.liquidityA = liquidityX; | ||
poolData.liquidityB = liquidity - liquidityX; | ||
allPoolData[i] = poolData; | ||
} | ||
|
||
bytes memory _abiEncodedData = abi.encode(allPoolData); | ||
assembly { | ||
// Return from the start of the data (discarding the original data address) | ||
// up to the end of the memory used | ||
let dataStart := add(_abiEncodedData, 0x20) | ||
return(dataStart, sub(msize(), dataStart)) | ||
} | ||
} | ||
|
||
function codeSizeIsZero(address target) internal view returns (bool) { | ||
if (target.code.length == 0) { | ||
return true; | ||
} else { | ||
return false; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.