Velenir
Velenir
If running `istanbul` inside `test` directory works, then ``` shell istanbul cover --root test _mocha ``` in parent directory should probably work.
Does `rollup` implement tree shaking? Then maybe it can remove something in production.
You're right. At best it could get rid of `utilities/getStateName`.
Can one of the reducers you are combining (`meta, history, versions`) be not a function? They must be proper reducers of `function(state, action)` kind.
@W3stside what matters is that doc/md files end up on master, like `ADD_TOKEN_REQUEST_TEMPLATE.md` was merged to master first
Are you passing `options.otherExchangePrices: true` to `SDK.getRate` call? ```ts const priceRoute = await paraSwap.getRate({ srcToken: ETH, destToken: DAI, amount: srcAmount, userAddress: senderAddress, side: SwapSide.SELL, options: { otherExchangePrices: true, }, });...