Remove Liquidity

Decrease Liquidity PSBT

post

Generates a PSBT for decreasing liquidity from a position. This PSBT is optional and it will be used to pay for the decrease transaction fees if the funds to withdraw are not enough to cover the fees.

Authorizations
Body
feeRateinteger · min: 1Required

The fee rate for the transaction (in sats per byte).

runePubkeystring · min: 64 · max: 66Required

The public key of the rune address of the user initiating the request.

Pattern: ^[0-9a-fA-F]+$
paymentPubkeystring · min: 64 · max: 66Optional

The public key of the bitcoin address of the user initiating the request. If the user doesn't have a bitcoin address, the runePubkey will be used

Pattern: ^[0-9a-fA-F]+$
runeAddressstringRequired

The rune address of the user. It must be a taproot address. (P2TR). If no bitcoin address is provided, the rune address will be used for bitcoin too.

paymentAddressstringOptional

The bitcoin address of the user.

Responses
201
An object containing the PSBT (in base64 format), the fee, and the list of UTXOs to sign.
application/json
post
POST /v0/pool/decrease-liquidity/psbt HTTP/1.1
Host: api-dev.saturnbtc.io
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 101

{
  "feeRate": 1,
  "runePubkey": "text",
  "paymentPubkey": "text",
  "runeAddress": "text",
  "paymentAddress": "text"
}
{
  "psbt": "text",
  "fee": 1,
  "utxosToSign": [
    {
      "address": "text",
      "signingIndexes": [
        1
      ],
      "sigHash": 1,
      "utxo": "text"
    }
  ]
}

Decrease Liquidity Message

post

Generates a message hash for decreasing liquidity from a position, which the user should sign.

Authorizations
Body
poolIdstring · min: 64 · max: 66Required

The pubkey of the pool.

Pattern: ^[0-9a-fA-F]+$
positionPubKeystring · min: 64 · max: 66Required

The pubkey of the position.

Pattern: ^[0-9a-fA-F]+$
liquidityAmountstringRequired

The amount of liquidity to withdraw.

feeRateinteger · min: 1Required

The fee rate for the transaction (in sats per byte).

minToken0stringRequired

The minimum amount of the first token to withdraw.

Pattern: ^[1-9][0-9]*$
minToken1stringRequired

The minimum amount of the second token to withdraw.

Pattern: ^[1-9][0-9]*$
withdrawAddressToken0stringRequired

The address to withdraw the first token to.

withdrawAddressToken1stringRequired

The address to withdraw the second token to.

signedPsbtstringOptional

The signed PSBT in base64 format.

Pattern: ^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}={2})$
runePubkeystring · min: 64 · max: 66Required

The public key of the rune address of the user initiating the request.

Pattern: ^[0-9a-fA-F]+$
paymentPubkeystring · min: 64 · max: 66Optional

The public key of the bitcoin address of the user initiating the request. If the user doesn't have a bitcoin address, the runePubkey will be used

Pattern: ^[0-9a-fA-F]+$
runeAddressstringRequired

The rune address of the user. It must be a taproot address. (P2TR). If no bitcoin address is provided, the rune address will be used for bitcoin too.

paymentAddressstringOptional

The bitcoin address of the user.

Responses
201
A hexadecimal string representing the hash of the message to be signed by the user.
application/json
Responsestring
post
POST /v0/pool/decrease-liquidity/message HTTP/1.1
Host: api-dev.saturnbtc.io
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 286

{
  "poolId": "text",
  "positionPubKey": "text",
  "liquidityAmount": "text",
  "feeRate": 1,
  "minToken0": "text",
  "minToken1": "text",
  "withdrawAddressToken0": "text",
  "withdrawAddressToken1": "text",
  "signedPsbt": "text",
  "runePubkey": "text",
  "paymentPubkey": "text",
  "runeAddress": "text",
  "paymentAddress": "text"
}
text

Decrease Liquidity

post

Finalizes the decrease of liquidity from a position by submitting the signed message and executing the transaction on the network.

Authorizations
Body
signaturestringRequired

The user's signature of the decrease liquidity message.

Pattern: ^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}={2})$
poolIdstring · min: 64 · max: 66Required

The pubkey of the pool.

Pattern: ^[0-9a-fA-F]+$
positionPubKeystring · min: 64 · max: 66Required

The pubkey of the position.

Pattern: ^[0-9a-fA-F]+$
liquidityAmountstringRequired

The amount of liquidity to withdraw.

feeRateinteger · min: 1Required

The fee rate for the transaction (in sats per byte).

minToken0stringRequired

The minimum amount of the first token to withdraw.

Pattern: ^[1-9][0-9]*$
minToken1stringRequired

The minimum amount of the second token to withdraw.

Pattern: ^[1-9][0-9]*$
withdrawAddressToken0stringRequired

The address to withdraw the first token to.

withdrawAddressToken1stringRequired

The address to withdraw the second token to.

signedPsbtstringOptional

The signed PSBT in base64 format.

Pattern: ^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}={2})$
runePubkeystring · min: 64 · max: 66Required

The public key of the rune address of the user initiating the request.

Pattern: ^[0-9a-fA-F]+$
paymentPubkeystring · min: 64 · max: 66Optional

The public key of the bitcoin address of the user initiating the request. If the user doesn't have a bitcoin address, the runePubkey will be used

Pattern: ^[0-9a-fA-F]+$
runeAddressstringRequired

The rune address of the user. It must be a taproot address. (P2TR). If no bitcoin address is provided, the rune address will be used for bitcoin too.

paymentAddressstringOptional

The bitcoin address of the user.

Responses
201
The Arch Network transaction ID of the liquidity decrease.
application/json
post
POST /v0/pool/decrease-liquidity HTTP/1.1
Host: api-dev.saturnbtc.io
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 305

{
  "signature": "text",
  "poolId": "text",
  "positionPubKey": "text",
  "liquidityAmount": "text",
  "feeRate": 1,
  "minToken0": "text",
  "minToken1": "text",
  "withdrawAddressToken0": "text",
  "withdrawAddressToken1": "text",
  "signedPsbt": "text",
  "runePubkey": "text",
  "paymentPubkey": "text",
  "runeAddress": "text",
  "paymentAddress": "text"
}
{
  "archTxId": "text",
  "bitcoinTxIds": [
    "text"
  ]
}

Last updated