Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add tests to populate and retract actions. #112

Merged
merged 3 commits into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
154 changes: 152 additions & 2 deletions src/actions/kandel/populate.test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { parseEther, parseUnits } from 'viem'
import { type Client, erc20Abi, parseEther, parseUnits } from 'viem'
import { describe, expect, inject, it } from 'vitest'
import { validateKandelParams } from '~mgv/index.js'
import { minVolume, validateKandelParams } from '~mgv/index.js'
import { BS } from '~mgv/lib/enums.js'
import { getClient } from '~test/src/client.js'
import { mintAndApprove } from '~test/src/contracts/index.js'
import { getBook } from '../book.js'
import { simulateMarketOrderByVolumeAndMarket } from '../market-order.js'
import { simulateBind, simulateDeployRouter } from '../smart-router.js'
import { simulatePopulate } from './populate.js'
import { simulateSow } from './sow.js'
Expand Down Expand Up @@ -129,5 +131,153 @@ describe('populate kandel', () => {
})
const hash2 = await client.writeContract(request)
await client.waitForTransactionReceipt({ hash: hash2 })

// const book2 = await getBook(client, actionParams, wethUSDC)
// console.log(book2)

await mintAndApprove(
client,
wethUSDC.base.address,
client.account.address,
parseEther('4.999'),
actionParams.mgv,
)
const {
request: marketOrderRequest,
takerGave,
bounty,
} = await simulateMarketOrderByVolumeAndMarket(
client,
actionParams,
wethUSDC,
{
bs: BS.sell,
baseAmount: parseEther('4.999'),
quoteAmount: parseUnits('13000', 6),
},
)

expect(takerGave).toBe(parseEther('4.999'))
expect(bounty).toBe(0n)

const marketOrderTx = await client.writeContract(marketOrderRequest)
await client.waitForTransactionReceipt({ hash: marketOrderTx })

// const book3 = await getBook(client, actionParams, wethUSDC)
// console.log(book3)

// console.log(minVolume(book3.asksConfig, 128_000n))
})

it('populates', async () => {
const { request: sowReq, result: kandel } = await simulateSow(
client,
wethUSDC,
kandelSeeder,
{
account: client.account.address,
},
)
const hash = await client.writeContract(sowReq)
await client.waitForTransactionReceipt({ hash })

const book = await getBook(client, actionParams, wethUSDC)

const { params, minProvision } = validateKandelParams({
minPrice: 2990,
midPrice: 3000,
maxPrice: 3010,
pricePoints: 5n,
market: wethUSDC,
baseAmount: parseEther('0.05'),
quoteAmount: parseUnits('150', 6),
stepSize: 1n,
gasreq: 350_000n,
factor: 3,
asksLocalConfig: book.asksConfig,
bidsLocalConfig: book.bidsConfig,
marketConfig: book.marketConfig,
deposit: true,
})

// expect(isValid).toBe(true)

// mint tokens and give approval to kandel
await mintAndApprove(
client,
wethUSDC.base.address,
client.account.address,
params.baseAmount || 0n,
kandel,
)
await mintAndApprove(
client,
wethUSDC.quote.address,
client.account.address,
params.quoteAmount || 0n,
kandel,
)

const { request } = await simulatePopulate(client, kandel, {
...params,
account: client.account.address,
value: minProvision,
})
const hash2 = await client.writeContract(request)
await client.waitForTransactionReceipt({ hash: hash2 })

// const book2 = await getBook(client, actionParams, wethUSDC)

await mintAndApprove(
client,
wethUSDC.base.address,
client.account.address,
parseEther('0.01'),
actionParams.mgv,
)
const { request: marketOrderRequest } =
await simulateMarketOrderByVolumeAndMarket(
client,
actionParams,
wethUSDC,
{
bs: BS.sell,
baseAmount: parseEther('0.01'),
quoteAmount: parseUnits('1', 6),
},
)

// expect(takerGave).toBe(parseEther('4.999'))
// expect(bounty).toBe(0n)

const marketOrderTx = await client.writeContract(marketOrderRequest)
await client.waitForTransactionReceipt({ hash: marketOrderTx })

// const book3 = await getBook(client, actionParams, wethUSDC)

// console.log(minVolume(book3.asksConfig, 128_000n))

await mintAndApprove(
client,
wethUSDC.quote.address,
client.account.address,
parseUnits('30', 6),
actionParams.mgv,
)

const { request: marketOrderRequest2 } =
await simulateMarketOrderByVolumeAndMarket(
client,
actionParams,
wethUSDC,
{
bs: BS.buy,
baseAmount: parseEther('0.01'),
quoteAmount: parseUnits('30', 6),
},
)

const marketOrderTx2 = await client.writeContract(marketOrderRequest2)
await client.waitForTransactionReceipt({ hash: marketOrderTx2 })
})
})
188 changes: 188 additions & 0 deletions src/actions/kandel/retract.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,188 @@
import { erc20Abi, maxUint256, parseEther, parseUnits } from 'viem'
import { describe, expect, inject, it } from 'vitest'
import { validateKandelParams } from '~mgv/index.js'
import { getClient } from '~test/src/client.js'
import { mintAndApprove } from '~test/src/contracts/index.js'
import { getBook } from '../book.js'
import { simulateBind, simulateDeployRouter } from '../smart-router.js'
import { simulatePopulate } from './populate.js'
import { simulateRetract } from './retract.js'
import { simulateSow } from './sow.js'

const { smartKandelSeeder, kandelSeeder } = inject('kandel')
const { wethUSDC } = inject('markets')
const actionParams = inject('mangrove')
const client = getClient()

describe('retract smart kandel', () => {
it('retracts', async () => {
const { request: sowReq, result: kandel } = await simulateSow(
client,
wethUSDC,
smartKandelSeeder,
{
account: client.account.address,
},
)
const hash = await client.writeContract(sowReq)
await client.waitForTransactionReceipt({ hash })

const book = await getBook(client, actionParams, wethUSDC)

const { params, isValid, minProvision } = validateKandelParams({
minPrice: 2500,
midPrice: 3000,
maxPrice: 3500,
pricePoints: 5n,
market: wethUSDC,
baseAmount: parseEther('1'),
quoteAmount: parseUnits('3000', 6),
stepSize: 1n,
gasreq: 350_000n,
factor: 3,
asksLocalConfig: book.asksConfig,
bidsLocalConfig: book.bidsConfig,
marketConfig: book.marketConfig,
})

expect(isValid).toBe(true)

const { request: deployRouterReq, router } = await simulateDeployRouter(
client,
actionParams,
{
user: client.account.address,
},
)
const routerTx = await client.writeContract(deployRouterReq)
await client.waitForTransactionReceipt({ hash: routerTx })

const { request: bindReq } = await simulateBind(client, router, {
target: kandel,
})
const bindTx = await client.writeContract(bindReq)
await client.waitForTransactionReceipt({ hash: bindTx })

const { request } = await simulatePopulate(client, kandel, {
...params,
account: client.account.address,
value: minProvision,
})
const hash2 = await client.writeContract(request)
await client.waitForTransactionReceipt({ hash: hash2 })
})
})

describe('retract kandel', () => {
it('retracts', async () => {
const { request: sowReq, result: kandel } = await simulateSow(
client,
wethUSDC,
kandelSeeder,
{
account: client.account.address,
},
)
const hash = await client.writeContract(sowReq)
await client.waitForTransactionReceipt({ hash })

const book = await getBook(client, actionParams, wethUSDC)

const { params, isValid, minProvision } = validateKandelParams({
minPrice: 2990,
midPrice: 3000,
maxPrice: 3010,
pricePoints: 5n,
market: wethUSDC,
baseAmount: parseEther('10'),
quoteAmount: parseUnits('30000', 6),
stepSize: 1n,
gasreq: 350_000n,
factor: 3,
asksLocalConfig: book.asksConfig,
bidsLocalConfig: book.bidsConfig,
marketConfig: book.marketConfig,
deposit: true,
})

expect(isValid).toBe(true)

// mint tokens and give approval to kandel
await mintAndApprove(
client,
wethUSDC.base.address,
client.account.address,
params.baseAmount || 0n,
kandel,
)
await mintAndApprove(
client,
wethUSDC.quote.address,
client.account.address,
params.quoteAmount || 0n,
kandel,
)

const { request } = await simulatePopulate(client, kandel, {
...params,
account: client.account.address,
value: minProvision,
})
const hash2 = await client.writeContract(request)
await client.waitForTransactionReceipt({ hash: hash2 })

const { request: retractRequest } = await simulateRetract(client, kandel, {
toIndex: 5n,
recipient: client.account.address,
baseAmount: maxUint256,
quoteAmount: maxUint256,
freeWei: maxUint256,
})

const hash3 = await client.writeContract(retractRequest)
await client.waitForTransactionReceipt({ hash: hash3 })

const balances = await client.multicall({
contracts: [
{
address: wethUSDC.base.address,
abi: erc20Abi,
functionName: 'balanceOf',
args: [client.account.address],
},
{
address: wethUSDC.quote.address,
abi: erc20Abi,
functionName: 'balanceOf',
args: [client.account.address],
},
{
address: wethUSDC.base.address,
abi: erc20Abi,
functionName: 'balanceOf',
args: [kandel],
},
{
address: wethUSDC.quote.address,
abi: erc20Abi,
functionName: 'balanceOf',
args: [kandel],
},
{
address: actionParams.mgv,
abi: erc20Abi,
functionName: 'balanceOf',
args: [kandel],
},
],
allowFailure: false,
})

expect(balances[0]).toEqual(params.baseAmount)
expect(balances[1]).toEqual(params.quoteAmount)

expect(balances[2]).toEqual(0n)
expect(balances[3]).toEqual(0n)
expect(balances[4]).toEqual(0n)
})
})