package com.tangem.wallet.eth; import android.net.Uri; import android.text.InputFilter; import android.util.Log; import com.tangem.App; import com.tangem.Constant; import com.tangem.data.Blockchain; import com.tangem.data.network.ServerApiBlockcypher; import com.tangem.data.network.ServerApiInfura; import com.tangem.data.network.ServerApiPayId; import com.tangem.data.network.model.BlockcypherFee; import com.tangem.data.network.model.BlockcypherResponse; import com.tangem.data.network.model.BlockcypherTxref; import com.tangem.data.network.model.InfuraResponse; import com.tangem.data.network.model.PayIdAddress; import com.tangem.data.network.model.PayIdResponse; import com.tangem.tangem_card.data.TangemCard; import com.tangem.tangem_card.tasks.SignTask; import com.tangem.util.CryptoUtil; import com.tangem.util.DecimalDigitsInputFilter; import com.tangem.wallet.BTCUtils; import com.tangem.wallet.BalanceValidator; import com.tangem.wallet.BuildConfig; import com.tangem.wallet.CoinData; import com.tangem.wallet.CoinEngine; import com.tangem.wallet.ECDSASignatureETH; import com.tangem.wallet.EthTransaction; import com.tangem.wallet.Keccak256; import com.tangem.wallet.R; import com.tangem.wallet.TangemContext; import org.bitcoinj.core.ECKey; import java.math.BigDecimal; import java.math.BigInteger; import java.math.RoundingMode; import java.net.URL; import java.util.Arrays; import io.reactivex.SingleObserver; import io.reactivex.observers.DisposableSingleObserver; /** * Created by Ilia on 15.02.2018. */ public class EthEngine extends CoinEngine { private static final String TAG = EthEngine.class.getSimpleName(); public EthData coinData = null; public EthEngine(TangemContext ctx) throws Exception { super(ctx); if (ctx.getCoinData() == null) { coinData = new EthData(); ctx.setCoinData(coinData); } else if (ctx.getCoinData() instanceof EthData) { coinData = (EthData) ctx.getCoinData(); } else { throw new Exception("Invalid type of Blockchain data for " + this.getClass().getSimpleName()); } } public EthEngine() { super(); } private static int getDecimals() { return 18; } protected int getChainIdNum() { return ctx.getBlockchain() == Blockchain.Ethereum ? EthTransaction.ChainEnum.Mainnet.getValue() : EthTransaction.ChainEnum.Rinkeby.getValue(); } @Override public boolean awaitingConfirmation() { return !coinData.getUnconfirmedTXCount().equals(coinData.getConfirmedTXCount()) || App.pendingTransactionsStorage.hasTransactions(ctx.getCard()); } @Override public Amount getBalance() { if (!hasBalanceInfo()) { return null; } return convertToAmount(coinData.getBalanceInInternalUnits()); } @Override public String getBalanceHTML() { Amount balance = getBalance(); if (balance != null) { return balance.toDescriptionString(getDecimals()); } else { return ""; } } @Override public String getBalanceCurrency() { return Blockchain.Ethereum.getCurrency(); } @Override public boolean isBalanceNotZero() { if (coinData == null) return false; if (coinData.getBalanceInInternalUnits() == null) return false; return coinData.getBalanceInInternalUnits().notZero(); } @Override public String getFeeCurrency() { return Blockchain.Ethereum.getCurrency(); } public boolean isNeedCheckNode() { return false; } @Override public CoinData createCoinData() { return new EthData(); } @Override public String getUnspentInputsDescription() { return ""; } // BigDecimal convertToEth(String value) { // BigInteger m = new BigInteger(value, 10); // BigDecimal n = new BigDecimal(m); // BigDecimal d = n.divide(new BigDecimal("1000000000000000000")); // d = d.setScale(8, RoundingMode.DOWN); // return d; // } @Override public boolean validateAddress(String address) { if (address == null || address.isEmpty()) { return false; } if (address.contains("$")) { // PayID return validatePayId(address); } if (!address.startsWith("0x") && !address.startsWith("0X")) { return false; } if (address.length() != 42) { return false; } return true; } // public String getBalanceValue(TangemCard mCard) { // String dec = coinData.getBalanceInInternalUnits(); // BigDecimal d = convertToEth(dec); // String s = d.toString(); // // String pattern = "#0.##################"; // If you like 4 zeros // DecimalFormat myFormatter = new DecimalFormat(pattern); // String output = myFormatter.format(d); // return output; // } // public static String getAmountEquivalentDescription(Amount amount, double rateValue) { // if (amount == null || amount.compareTo(BigDecimal.ZERO) == 0) // return ""; // // if (rateValue > 0) { // BigDecimal biRate = new BigDecimal(rateValue); // BigDecimal exchangeCurs = biRate.multiply(amount); // exchangeCurs = exchangeCurs.setScale(2, RoundingMode.DOWN); // return "≈ USD  " + exchangeCurs.toString(); // } else { // return ""; // } // } // public static String getAmountEquivalentDescriptionETH(Double amount, float rate) { // if (amount == 0) // return ""; // amount = amount / 100000; // if (rate > 0) { // return String.format("≈ USD %.2f", amount * rate); // } else { // return ""; // } // // } @Override public String getBalanceEquivalent() { Amount balance = getBalance(); if (balance == null) return ""; return balance.toEquivalentString(coinData.getRate()); } @Override public Amount convertToAmount(InternalAmount internalAmount) { BigDecimal d = internalAmount.divide(new BigDecimal("1000000000000000000"), getDecimals(), RoundingMode.DOWN); return new Amount(d, ctx.getBlockchain().getCurrency()); } @Override public Amount convertToAmount(String strAmount, String currency) { return new Amount(strAmount, currency); } @Override public InternalAmount convertToInternalAmount(Amount amount) { return new InternalAmount(amount.multiply(new BigDecimal("1000000000000000000")), "wei"); } @Override public InternalAmount convertToInternalAmount(byte[] bytes) { //throw new Exception("Not implemented"); return null; } @Override public byte[] convertToByteArray(InternalAmount amount) throws Exception { throw new Exception("Not implemented"); } @Override public boolean hasBalanceInfo() { return coinData.getBalanceInInternalUnits() != null; } @Override public Uri getShareWalletUri() { // if (ctx.getCard().getDenomination() != null) { // return Uri.parse("ethereum:" + ctx.getCoinData().getWallet());// + "?value=" + mCard.getDenomination() +"e18"); if (ctx.getBlockchain() == Blockchain.Ethereum) { return Uri.parse(ctx.getCoinData().getWallet()); } else { return Uri.parse(ctx.getCoinData().getWallet()); } } @Override public Uri getWalletExplorerUri() { if (ctx.getBlockchain() == Blockchain.EthereumTestNet) return Uri.parse("https://rinkeby.etherscan.io/address/" + ctx.getCoinData().getWallet()); else return Uri.parse("https://etherscan.io/address/" + ctx.getCoinData().getWallet()); } @Override public boolean isExtractPossible() { if (!hasBalanceInfo()) { ctx.setMessage(R.string.loaded_wallet_error_obtaining_blockchain_data); } else if (!isBalanceNotZero()) { ctx.setMessage(R.string.general_wallet_empty); } else if (awaitingConfirmation()) { ctx.setMessage(R.string.loaded_wallet_message_wait); } else { return true; } return false; } @Override public InputFilter[] getAmountInputFilters() { return new InputFilter[]{new DecimalDigitsInputFilter(getDecimals())}; } @Override public boolean checkNewTransactionAmount(Amount amount) { if (BuildConfig.FLAVOR == Constant.FLAVOR_TANGEM_CARDANO) { return true; } Amount balance = getBalance(); if (balance == null || amount.compareTo(balance) > 0) { return false; } return true; } @Override public boolean checkNewTransactionAmountAndFee(Amount amount, Amount fee, Boolean isFeeIncluded) { // Long fee = null; // Long amount = null; // try { // amount = mCard.internalUnitsFromString(amountValue); // fee = mCard.internalUnitsFromString(feeValue); // } catch (Exception e) { // e.printStackTrace(); // return false; // } // // if (fee == null || amount == null) // return false; // // if (fee == 0 || amount == 0) // return false; // // // if (fee < minFeeInInternalUnits) // return false; try { BigDecimal cardBalance = getBalance(); if (isFeeIncluded && (amount.compareTo(cardBalance) > 0 || amount.compareTo(fee) < 0)) return false; if (!isFeeIncluded && amount.add(fee).compareTo(cardBalance) > 0) return false; } catch (NumberFormatException e) { e.printStackTrace(); } return true; } @Override public boolean validateBalance(BalanceValidator balanceValidator) { if (getBalance() == null) { balanceValidator.setScore(0); balanceValidator.setFirstLine(R.string.balance_validator_first_line_unknown_balance); balanceValidator.setSecondLine(R.string.balance_validator_second_line_unverified_balance); return false; } if (!coinData.getUnconfirmedTXCount().equals(coinData.getConfirmedTXCount())) { balanceValidator.setScore(0); balanceValidator.setFirstLine(R.string.balance_validator_first_line_transaction_in_progress); balanceValidator.setSecondLine(R.string.balance_validator_second_line_wait_for_confirmation); return false; } if (coinData.isBalanceReceived()) { balanceValidator.setScore(100); balanceValidator.setFirstLine(R.string.balance_validator_first_line_verified_balance); balanceValidator.setSecondLine(R.string.balance_validator_second_line_confirmed_in_blockchain); if (getBalance().isZero()) { balanceValidator.setFirstLine(R.string.balance_validator_first_line_empty_wallet); balanceValidator.setSecondLine(R.string.empty_string); } } // if ((ctx.getCard().getOfflineBalance() != null) && !coinData.isBalanceReceived() && ctx.getCard().getRemainingSignatures() == ctx.getCard().getMaxSignatures()) { // balanceValidator.setScore(80); // balanceValidator.setFirstLine(R.string.balance_validator_first_line_verified_offline); // balanceValidator.setSecondLine(R.string.balance_validator_second_line_internet_to_verify_online); // } return true; } @Override public String evaluateFeeEquivalent(String fee) { try { Amount feeValue = new Amount(fee, ctx.getBlockchain().getCurrency()); return feeValue.toEquivalentString(coinData.getRate()); } catch (Exception e) { e.printStackTrace(); return ""; } } @Override public String calculateAddress(byte[] pkUncompressed) { Keccak256 kec = new Keccak256(); int lenPk = pkUncompressed.length; if (lenPk < 2) { throw new IllegalArgumentException("Uncompress public key length is invalid"); } byte[] cleanKey = new byte[lenPk - 1]; for (int i = 0; i < cleanKey.length; ++i) { cleanKey[i] = pkUncompressed[i + 1]; } byte[] r = kec.digest(cleanKey); byte[] address = new byte[20]; for (int i = 0; i < 20; ++i) { address[i] = r[i + 12]; } return String.format("0x%s", BTCUtils.toHex(address)); } @Override public SignTask.TransactionToSign constructTransaction(Amount amountValue, Amount feeValue, boolean IncFee, String targetAddress) { Log.e(TAG, "Construct transaction " + amountValue.toString() + " with fee " + feeValue.toString() + (IncFee ? " including" : " excluding")); String destination; //PayID if (coinData.getResolvedPayIdAddress() != null) { destination = coinData.getResolvedPayIdAddress(); } else { destination = targetAddress; } BigInteger nonceValue = coinData.getConfirmedTXCount(); byte[] pbKey = ctx.getCard().getWalletPublicKey(); BigInteger weiFee = convertToInternalAmount(feeValue).toBigIntegerExact(); BigInteger weiAmount = convertToInternalAmount(amountValue).toBigIntegerExact(); if (IncFee) { weiAmount = weiAmount.subtract(weiFee); } BigInteger gasPrice = weiFee.divide(BigInteger.valueOf(21000)); BigInteger gasLimit = BigInteger.valueOf(21000); Integer chainId = this.getChainIdNum(); if (destination.startsWith("0x") || destination.startsWith("0X")) { destination = destination.substring(2); } final EthTransaction tx = EthTransaction.create(destination, weiAmount, nonceValue, gasPrice, gasLimit, chainId); return new SignTask.TransactionToSign() { @Override public boolean isSigningMethodSupported(TangemCard.SigningMethod signingMethod) { return signingMethod == TangemCard.SigningMethod.Sign_Hash; } @Override public byte[][] getHashesToSign() { byte[][] hashesForSign = new byte[1][]; hashesForSign[0] = tx.getRawHash(); return hashesForSign; } @Override public byte[] getRawDataToSign() throws Exception { throw new Exception("Signing of raw transaction not supported for " + this.getClass().getSimpleName()); } @Override public String getHashAlgToSign() throws Exception { throw new Exception("Signing of raw transaction not supported for " + this.getClass().getSimpleName()); } @Override public byte[] getIssuerTransactionSignature(byte[] dataToSignByIssuer) throws Exception { throw new Exception("Transaction validation by issuer not supported in this version"); } @Override public byte[] onSignCompleted(byte[] signFromCard) throws Exception { byte[] for_hash = tx.getRawHash(); BigInteger r = new BigInteger(1, Arrays.copyOfRange(signFromCard, 0, 32)); BigInteger s = new BigInteger(1, Arrays.copyOfRange(signFromCard, 32, 64)); s = CryptoUtil.toCanonicalised(s); boolean f = ECKey.verify(for_hash, new ECKey.ECDSASignature(r, s), pbKey); if (!f) { Log.e(this.getClass().getSimpleName() + "-CHECK", "sign Failed."); } tx.signature = new ECDSASignatureETH(r, s); int v = tx.BruteRecoveryID2(tx.signature, for_hash, pbKey); if (v != 27 && v != 28) { Log.e(this.getClass().getSimpleName(), "invalid v"); throw new Exception("Error in " + this.getClass().getSimpleName() + " - invalid v"); } tx.signature.v = (byte) v; Log.e(this.getClass().getSimpleName(), " V: " + String.valueOf(v)); byte[] txForSend = tx.getEncoded(); notifyOnNeedSendTransaction(txForSend); return txForSend; } }; } @Override public void requestBalanceAndUnspentTransactions(BlockchainRequestsCallbacks blockchainRequestsCallbacks) { final ServerApiInfura serverApiInfura = new ServerApiInfura(ctx.getBlockchain()); final ServerApiBlockcypher serverApiBlockcypher = new ServerApiBlockcypher(); ServerApiInfura.ResponseListener responseListener = new ServerApiInfura.ResponseListener() { @Override public void onSuccess(String method, InfuraResponse infuraResponse) { switch (method) { case ServerApiInfura.INFURA_ETH_GET_BALANCE: { String balanceCap = infuraResponse.getResult(); balanceCap = balanceCap.substring(2); BigInteger l = new BigInteger(balanceCap, 16); coinData.setBalanceReceived(true); coinData.setBalanceInInternalUnits(new CoinEngine.InternalAmount(l, "wei")); // Log.i("$TAG eth_get_balance", balanceCap) } break; case ServerApiInfura.INFURA_ETH_GET_TRANSACTION_COUNT: { String nonce = infuraResponse.getResult(); nonce = nonce.substring(2); BigInteger count = new BigInteger(nonce, 16); coinData.setConfirmedTXCount(count); if (serverApiInfura.isRequestsSequenceCompleted()) { //getting balances after checking for pending to avoid showing old balance as verified serverApiInfura.requestData(ServerApiInfura.INFURA_ETH_GET_BALANCE, 67, coinData.getWallet(), "", ""); } // Log.i("$TAG eth_getTransCount", nonce) } break; case ServerApiInfura.INFURA_ETH_GET_PENDING_COUNT: { String pending = infuraResponse.getResult(); pending = pending.substring(2); BigInteger count = new BigInteger(pending, 16); coinData.setUnconfirmedTXCount(count); if (serverApiInfura.isRequestsSequenceCompleted()) { //getting balances after checking for pending to avoid showing old balance as verified serverApiInfura.requestData(ServerApiInfura.INFURA_ETH_GET_BALANCE, 67, coinData.getWallet(), "", ""); } // Log.i("$TAG eth_getPendingTxCount", pending) } break; } if (serverApiInfura.isRequestsSequenceCompleted() && serverApiBlockcypher.isRequestsSequenceCompleted()) { blockchainRequestsCallbacks.onComplete(!ctx.hasError()); } else { blockchainRequestsCallbacks.onProgress(); } } @Override public void onFail(String method, String message) { Log.e(TAG, "onFail: " + method + " " + message); ctx.setError(message); if (serverApiInfura.isRequestsSequenceCompleted() && serverApiBlockcypher.isRequestsSequenceCompleted()) { blockchainRequestsCallbacks.onComplete(false); } else { blockchainRequestsCallbacks.onProgress(); } } }; serverApiInfura.setResponseListener(responseListener); ServerApiBlockcypher.ResponseListener blockcypherListener = new ServerApiBlockcypher.ResponseListener() { @Override public void onSuccess(String method, BlockcypherResponse blockcypherResponse) { Log.i(TAG, "onSuccess: " + method); try { //TODO: change request logic, 2000 tx max if (blockcypherResponse.getTxrefs() != null) { for (BlockcypherTxref txref : blockcypherResponse.getTxrefs()) { if (txref.getTx_input_n() != -1) { //sent only coinData.incSentTransactionsCount(); } } } if (blockcypherResponse.getUnconfirmed_txrefs() != null) { for (BlockcypherTxref unconfirmedTxref : blockcypherResponse.getUnconfirmed_txrefs()) { if (unconfirmedTxref.getTx_input_n() != -1) { coinData.incSentTransactionsCount(); } } } } catch (Exception e) { e.printStackTrace(); Log.e(TAG, "FAIL BLOCKCYPHER_ADDRESS Exception"); } if (serverApiInfura.isRequestsSequenceCompleted() && serverApiBlockcypher.isRequestsSequenceCompleted()) { blockchainRequestsCallbacks.onComplete(!ctx.hasError()); } else { blockchainRequestsCallbacks.onProgress(); } } public void onSuccess(String method, BlockcypherFee blockcypherFee) { Log.e(TAG, "Wrong response type for requestBalanceAndUnspentTransactions"); if (serverApiInfura.isRequestsSequenceCompleted() && serverApiBlockcypher.isRequestsSequenceCompleted()) { blockchainRequestsCallbacks.onComplete(!ctx.hasError()); } else { blockchainRequestsCallbacks.onProgress(); } } @Override public void onFail(String method, String message) { Log.i(TAG, "onFail: " + method + " " + message); if (serverApiInfura.isRequestsSequenceCompleted() && serverApiBlockcypher.isRequestsSequenceCompleted()) { blockchainRequestsCallbacks.onComplete(!ctx.hasError()); } else { blockchainRequestsCallbacks.onProgress(); } } }; serverApiBlockcypher.setResponseListener(blockcypherListener); serverApiInfura.requestData(ServerApiInfura.INFURA_ETH_GET_TRANSACTION_COUNT, 67, coinData.getWallet(), "", ""); serverApiInfura.requestData(ServerApiInfura.INFURA_ETH_GET_PENDING_COUNT, 67, coinData.getWallet(), "", ""); serverApiBlockcypher.requestData(ctx.getBlockchain().getID(), ServerApiBlockcypher.BLOCKCYPHER_ADDRESS, ctx.getCoinData().getWallet(), ""); } @Override public void requestFee(BlockchainRequestsCallbacks blockchainRequestsCallbacks, String targetAddress, Amount amount) { ServerApiInfura serverApiInfura = new ServerApiInfura(ctx.getBlockchain()); final ServerApiPayId serverApiPayId = new ServerApiPayId(); // request requestData eth gasPrice listener ServerApiInfura.ResponseListener responseListener = new ServerApiInfura.ResponseListener() { @Override public void onSuccess(String method, InfuraResponse infuraResponse) { String gasPrice = infuraResponse.getResult(); gasPrice = gasPrice.substring(2); // rounding gas price to integer gwei BigInteger l = new BigInteger(gasPrice, 16);//.divide(BigInteger.valueOf(1000000000L)).multiply(BigInteger.valueOf(1000000000L)); Log.i(TAG, "Infura gas price: " + gasPrice + " (" + l.toString() + ")"); BigInteger m = BigInteger.valueOf(21000); Log.e(TAG, "fee multiplier: " + m.toString()); CoinEngine.InternalAmount weiMinFee = new CoinEngine.InternalAmount(l.multiply(m), "wei"); CoinEngine.InternalAmount weiNormalFee = new CoinEngine.InternalAmount(l.multiply(BigInteger.valueOf(12)).divide(BigInteger.valueOf(10)).multiply(m), "wei"); CoinEngine.InternalAmount weiMaxFee = new CoinEngine.InternalAmount(l.multiply(BigInteger.valueOf(15)).divide(BigInteger.valueOf(10)).multiply(m), "wei"); Log.i(TAG, "min fee : " + weiMinFee.toValueString() + " wei"); Log.i(TAG, "normal fee: " + weiNormalFee.toValueString() + " wei"); Log.i(TAG, "max fee : " + weiMaxFee.toValueString() + " wei"); coinData.minFee = convertToAmount(weiMinFee); coinData.normalFee = convertToAmount(weiNormalFee); coinData.maxFee = convertToAmount(weiMaxFee); Log.i(TAG, "min fee : " + coinData.minFee.toString()); Log.i(TAG, "normal fee: " + coinData.normalFee.toString()); Log.i(TAG, "max fee : " + coinData.maxFee.toString()); if (serverApiInfura.isRequestsSequenceCompleted() && serverApiPayId.isRequestsSequenceCompleted()) { blockchainRequestsCallbacks.onComplete(!ctx.hasError()); } else { blockchainRequestsCallbacks.onProgress(); } } @Override public void onFail(String method, String message) { ctx.setError(ctx.getContext().getString(R.string.confirm_transaction_error_cannot_calculate_fee)); blockchainRequestsCallbacks.onComplete(false); } }; serverApiInfura.setResponseListener(responseListener); if (targetAddress.contains("$")) { // PayID SingleObserver observer = new DisposableSingleObserver() { @Override public void onSuccess(PayIdResponse payIdResponse) { try { String resolvedAddress = null; for (PayIdAddress address : payIdResponse.getAddresses()) { if (address.getPaymentNetwork().equals("ETH") && address.getEnvironment().equals("MAINNET")) { resolvedAddress = address.getAddressDetails().getAddress(); break; } } if (validateAddress(resolvedAddress)) { if (resolvedAddress.equals(coinData.getWallet())) { ctx.setError(R.string.prepare_transaction_error_same_address); blockchainRequestsCallbacks.onComplete(false); } else { coinData.setResolvedPayIdAddress(resolvedAddress); if (serverApiInfura.isRequestsSequenceCompleted() && serverApiPayId.isRequestsSequenceCompleted()) { blockchainRequestsCallbacks.onComplete(!ctx.hasError()); } else { blockchainRequestsCallbacks.onProgress(); } } } else { ctx.setError("Unknown address format in PayID response"); blockchainRequestsCallbacks.onComplete(false); } } catch (Exception e) { ctx.setError("Unknown response format on PayID request"); blockchainRequestsCallbacks.onComplete(false); } if (serverApiInfura.isRequestsSequenceCompleted() && serverApiPayId.isRequestsSequenceCompleted()) { blockchainRequestsCallbacks.onComplete(!ctx.hasError()); } else { blockchainRequestsCallbacks.onProgress(); } } @Override public void onError(Throwable e) { Log.i(TAG, "onFail: " + "payID" + " " + e.getMessage()); ctx.setError("PayID error:" + e.getMessage()); blockchainRequestsCallbacks.onComplete(false); } }; serverApiPayId.getAddress(targetAddress, ctx.getBlockchain(), observer); } serverApiInfura.requestData(ServerApiInfura.INFURA_ETH_GAS_PRICE, 67, coinData.getWallet(), "", ""); } @Override public void requestSendTransaction(BlockchainRequestsCallbacks blockchainRequestsCallbacks, byte[] txForSend) { String txStr = String.format("0x%s", BTCUtils.toHex(txForSend)); ServerApiInfura serverApiInfura = new ServerApiInfura(ctx.getBlockchain()); // request requestData eth gasPrice listener ServerApiInfura.ResponseListener responseListener = new ServerApiInfura.ResponseListener() { @Override public void onSuccess(String method, InfuraResponse infuraResponse) { if (method.equals(ServerApiInfura.INFURA_ETH_SEND_RAW_TRANSACTION)) { if (infuraResponse.getResult() == null || infuraResponse.getResult().isEmpty()) { ctx.setError("Rejected by node: " + infuraResponse.getError()); blockchainRequestsCallbacks.onComplete(false); } else { BigInteger nonce = coinData.getConfirmedTXCount(); nonce = nonce.add(BigInteger.valueOf(1)); coinData.setConfirmedTXCount(nonce); ctx.setError(null); blockchainRequestsCallbacks.onComplete(true); } } } @Override public void onFail(String method, String message) { if (method.equals(ServerApiInfura.INFURA_ETH_SEND_RAW_TRANSACTION)) { ctx.setError(message); blockchainRequestsCallbacks.onComplete(false); } } }; serverApiInfura.setResponseListener(responseListener); serverApiInfura.requestData(ServerApiInfura.INFURA_ETH_SEND_RAW_TRANSACTION, 67, coinData.getWallet(), "", txStr); } public int pendingTransactionTimeoutInSeconds() { return 10; } @Override public boolean needMultipleLinesForBalance() { return true; } }