获取注入/创建待签名 PSBT

获取待签名 PSBT (BRC20)

预注入/创建请求成功,获取待签名 PSBT。其中,部分请求参数为预注入/创建请求返回结果。

POST /brc20swap/v2/create_add_liquid_psbt

export interface PoolPsbtBody {
  tick1: string;
  tick2: string;
  coin_type_1: string;
  coin_type_2: string;
  amount_1: string;
  amount_2: string;
  slipper: string;
  tick_1_inscription_ids: string[];
  tick_2_inscription_ids: string[];
  payer_ord_addr: string;
  fee_rate: string;
  payer_btc_addr: string;
  payer_pub_key: string;
  check_sum: string; // 上面预请求接口返回
  vins: string[]; // 上面预请求接口返回
}

1、payer_ord_addrpayer_btc_addr 传同一个地址即可

Last updated