createProvideLiquidityBody method
Cell
createProvideLiquidityBody({
- required InternalAddress routerWalletAddress,
- required BigInt minLpOut,
Implementation
Cell createProvideLiquidityBody({
required InternalAddress routerWalletAddress,
required BigInt minLpOut,
}) {
return beginCell()
.storeUint(DexOpCodes.PROVIDE_LP.op, 32)
.storeAddress(routerWalletAddress)
.storeCoins(minLpOut)
.endCell();
}