Withdraw DCA order

const in_coin_type = '0x0000000000000000000000000000000000000000000000000000000000000002::sui::SUI'
const out_coin_type = '0x26b3bc67befc214058ca78ea9a2690298d731a2d4309485ec3d40198063c4abc::usdc::USDC'
const order_id = '0xa60c763185a84b87380a0a1e7e677...'

const withdraw_payload = await sdk.Dca.withdrawPayload({
  in_coin_type,
  out_coin_type,
  order_id,
})
const result = await sdk.FullClient.sendTransaction(send_key_pair, withdraw_payload)

Last updated