UNPKG
pumpfun-swap-sdk
Version:
latest (1.0.1)
1.0.1
1.0.0
SDK for interacting with the PumpFun AMM on Solana
pumpfun-swap-sdk
/
dist
/
sdk
/
withdraw.d.ts
4 lines
(3 loc)
•
215 B
TypeScript
View Raw
1
2
3
4
import
BN
from
'bn.js'
;
import
{
WithdrawResult
}
from
'../types/sdk'
;
export
declare
function
withdrawInternal
(
lpAmount
: BN,
slippage
:
number
,
baseReserve
: BN,
quoteReserve
: BN,
totalLpTokens
: BN
):
WithdrawResult
;