2
I'm developing wallet system trading BTC, BCH and so on.
In BTC, I'm using estimatesmartfee API to calculate by transaction size and relayfee to guarantee minimum fee and it works well.
In BCH, though most of logic is same as BTC except estimatesmartfee, estimatefee is used in BCH.
However, as increasing transaction size by input UTXOs, sendrawtransaction is often failed because of shortage of fee.
How should it implemented properly? What is it affected? I guess some reasons, If I need to use API to get proper fee rete from some sites, what is that site?

As far as I know, it's gone from latest node – Harry – 2019-01-15T11:11:18.487
Seems you are right. This repo has no more that command available: https://github.com/Bitcoin-ABC/bitcoin-abc/blob/master/src/rpc/client.cpp#L112 You can maybe try to get such fee estimate from a real time API of BCH block explorer?
– AG23 – 2019-01-15T11:18:28.003