-
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
4 changed files
with
155 additions
and
2 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
86 changes: 86 additions & 0 deletions
86
packages/panoptic-sdk/src/publicActions/simulatePanopticSFPMMintTokenizedPosition.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,86 @@ | ||
import { createUniswapV3Tick } from "uniswap-v3-sdk"; | ||
import { type Hex } from "viem"; | ||
import { simulateContract, writeContract } from "viem/actions"; | ||
import { sepolia } from "viem/chains"; | ||
import { beforeEach, 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 { createPanopticPosition } from "../utils/createPanopticPosition.js"; | ||
import { simulatePanopticSFPMInitializeAMMPool } from "./simulatePanopticSFPMInitializeAMMPool.js"; | ||
import { simulatePanopticSFPMMintTokenizedPosition } from "./simulatePanopticSFPMMintTokenizedPosition.js"; | ||
|
||
let id: Hex | undefined = undefined; | ||
|
||
let pool: PanopticPool; | ||
|
||
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 ** 24n], | ||
account: ALICE, | ||
}); | ||
|
||
const approveHash = await writeContract(walletClient, approveRequest); | ||
await publicClient.waitForTransactionReceipt({ hash: approveHash }); | ||
} else { | ||
await testClient.revert({ id }); | ||
} | ||
id = await testClient.snapshot(); | ||
}, 100_000); | ||
|
||
test("mint tokenized position", async () => { | ||
const { request } = await simulatePanopticSFPMMintTokenizedPosition( | ||
publicClient, | ||
{ | ||
args: { | ||
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, | ||
), | ||
amount: 10n ** 18n, | ||
}, | ||
account: ALICE, | ||
}, | ||
); | ||
const hash = await walletClient.writeContract(request); | ||
await publicClient.waitForTransactionReceipt({ hash }); | ||
|
||
// TODO: check the minted position and amounts taken | ||
}); |
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,67 @@ | ||
import { MAX_TICK, MIN_TICK } from "uniswap-v3-sdk"; | ||
import type { | ||
Chain, | ||
Client, | ||
SimulateContractParameters, | ||
SimulateContractReturnType, | ||
Transport, | ||
} from "viem"; | ||
import { simulateContract } from "viem/contract"; | ||
import { semiFungiblePositionManagerABI } from "../generated.js"; | ||
import type { PanopticPosition } from "../types/PanopticPosition.js"; | ||
|
||
export type PanopticSFPMMintTokenizedPositionParameters = { | ||
position: PanopticPosition; | ||
amount: bigint; | ||
}; | ||
|
||
export type SimulatePanopticSFPMMintTokenizedPositionParameters< | ||
TChain extends Chain | undefined = Chain, | ||
TChainOverride extends Chain | undefined = Chain | undefined, | ||
> = Omit< | ||
SimulateContractParameters< | ||
typeof semiFungiblePositionManagerABI, | ||
"mintTokenizedPosition", | ||
TChain, | ||
TChainOverride | ||
>, | ||
"args" | "address" | "abi" | "functionName" | ||
> & { args: PanopticSFPMMintTokenizedPositionParameters }; | ||
|
||
export type SimulatePanopticSFPMMintTokenizedPositionReturnType< | ||
TChain extends Chain | undefined, | ||
TChainOverride extends Chain | undefined = undefined, | ||
> = SimulateContractReturnType< | ||
typeof semiFungiblePositionManagerABI, | ||
"mintTokenizedPosition", | ||
TChain, | ||
TChainOverride | ||
>; | ||
|
||
export const simulatePanopticSFPMMintTokenizedPosition = < | ||
TChain extends Chain | undefined, | ||
TChainOverride extends Chain | undefined, | ||
>( | ||
client: Client<Transport, TChain>, | ||
{ | ||
args: { position, amount }, | ||
...request | ||
}: SimulatePanopticSFPMMintTokenizedPositionParameters< | ||
TChain, | ||
TChainOverride | ||
>, | ||
): Promise< | ||
SimulatePanopticSFPMMintTokenizedPositionReturnType<TChain, TChainOverride> | ||
> => | ||
simulateContract(client, { | ||
address: position.pool.factory.semiFungiblePositionManager.address, | ||
abi: semiFungiblePositionManagerABI, | ||
functionName: "mintTokenizedPosition", | ||
args: [[position.id], amount, MIN_TICK, MAX_TICK], | ||
...request, | ||
} as unknown as SimulateContractParameters< | ||
typeof semiFungiblePositionManagerABI, | ||
"mintTokenizedPosition", | ||
TChain, | ||
TChainOverride | ||
>); |
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