alxtrade
alxtrade
1. Config. New blockchain in tower 2. Config. Currency in tower 3. Add wallets deposit, hot and fee in tower 4. Restart with docker-compose up -Vd blockchain
Hi, I m facing the same issue. Anyway, fixing gas price does not solve the BigNumber issue. You can change to this: if (action==="buy"){ return amount.add(1000000000); }else{ return amount.sub(1000000000); I...
Change to this, so it will add 1 gwei correctly: if (action==="buy"){ return amount.add(1000000000); }else{ return amount.sub(1000000000); any way the issue will persist, unable to fix it yet