-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
103 additions
and
1 deletion.
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
98 changes: 98 additions & 0 deletions
98
packages/panoptic-sdk/src/publicActions/getPanoptionLegData.test.ts
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,98 @@ | ||
import { createUniswapV3Tick } from "uniswap-v3-sdk"; | ||
import { type Hex } from "viem"; | ||
import { simulateContract, writeContract } from "viem/actions"; | ||
import { sepolia } from "viem/chains"; | ||
import { beforeEach, expect, test } from "vitest"; | ||
import { ALICE } from "../_test/constants.js"; | ||
import { | ||
deployPool, | ||
publicClient, | ||
testClient, | ||
walletClient, | ||
} from "../_test/utils.js"; | ||
import { mockErc20ABI } from "../generated.js"; | ||
import type { PanopticPool } from "../types/PanopticPool.js"; | ||
import type { PanopticPosition } from "../types/PanopticPosition.js"; | ||
import { createPanopticPosition } from "../utils/createPanopticPosition.js"; | ||
import { getPanoptionLegData } from "./getPanoptionLegData.js"; | ||
import { simulatePanopticSFPMInitializeAMMPool } from "./simulatePanopticSFPMInitializeAMMPool.js"; | ||
import { simulatePanopticSFPMMintTokenizedPosition } from "./simulatePanopticSFPMMintTokenizedPosition.js"; | ||
|
||
let id: Hex | undefined = undefined; | ||
|
||
let pool: PanopticPool; | ||
let position: PanopticPosition; | ||
|
||
beforeEach(async () => { | ||
if (id === undefined) { | ||
pool = await deployPool(); | ||
const { request: initializeRequest } = | ||
await simulatePanopticSFPMInitializeAMMPool(publicClient, { | ||
args: { | ||
pool: pool.uniswapPool, | ||
sfpm: pool.factory.semiFungiblePositionManager, | ||
}, | ||
}); | ||
|
||
const initializeHash = await walletClient.writeContract(initializeRequest); | ||
await publicClient.waitForTransactionReceipt({ hash: initializeHash }); | ||
|
||
const { request: approveRequest } = await simulateContract(publicClient, { | ||
address: pool.collateralTracker0.underlyingToken.address, | ||
abi: mockErc20ABI, | ||
functionName: "approve", | ||
args: [pool.factory.semiFungiblePositionManager.address, 10n ** 18n], | ||
account: ALICE, | ||
}); | ||
|
||
const approveHash = await writeContract(walletClient, approveRequest); | ||
await publicClient.waitForTransactionReceipt({ hash: approveHash }); | ||
|
||
position = createPanopticPosition( | ||
ALICE, | ||
pool, | ||
[ | ||
{ | ||
asset: "token0", | ||
optionRatio: 1, | ||
position: "short", | ||
tokenType: "token0", | ||
riskPartnerIndex: 0, | ||
tickLower: createUniswapV3Tick(0), | ||
tickUpper: createUniswapV3Tick(10), | ||
}, | ||
undefined, | ||
undefined, | ||
undefined, | ||
], | ||
sepolia.id, | ||
); | ||
|
||
const { request } = await simulatePanopticSFPMMintTokenizedPosition( | ||
publicClient, | ||
{ | ||
args: { | ||
position, | ||
amount: 10n ** 18n, | ||
}, | ||
account: ALICE, | ||
}, | ||
); | ||
const hash = await walletClient.writeContract(request); | ||
await publicClient.waitForTransactionReceipt({ hash }); | ||
} else { | ||
await testClient.revert({ id }); | ||
} | ||
id = await testClient.snapshot(); | ||
}, 100_000); | ||
|
||
test("get leg data", async () => { | ||
const legData = await getPanoptionLegData(publicClient, { | ||
leg: position.legs[0]!, | ||
address: ALICE, | ||
pool: pool, | ||
tick: createUniswapV3Tick(0), | ||
}); | ||
|
||
expect(legData.liquidityAdded).toBe(2n ** 128n - 1n); | ||
}); |