2021-02-04 19:15:23 +01:00
|
|
|
import { createSlice } from '@reduxjs/toolkit';
|
|
|
|
import BigNumber from 'bignumber.js';
|
|
|
|
import log from 'loglevel';
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
import { getStorageItem, setStorageItem } from '../../../lib/storage-helpers';
|
2020-11-24 16:38:04 +01:00
|
|
|
|
2020-10-06 20:28:38 +02:00
|
|
|
import {
|
|
|
|
addToken,
|
|
|
|
addUnapprovedTransaction,
|
|
|
|
fetchAndSetQuotes,
|
|
|
|
forceUpdateMetamaskState,
|
|
|
|
resetSwapsPostFetchState,
|
|
|
|
setBackgroundSwapRouteState,
|
|
|
|
setInitialGasEstimate,
|
|
|
|
setSwapsErrorKey,
|
|
|
|
setSwapsTxGasPrice,
|
|
|
|
setApproveTxId,
|
|
|
|
setTradeTxId,
|
|
|
|
stopPollingForQuotes,
|
|
|
|
updateAndApproveTx,
|
|
|
|
updateTransaction,
|
|
|
|
resetBackgroundSwapsState,
|
|
|
|
setSwapsLiveness,
|
2020-11-12 20:12:04 +01:00
|
|
|
setSelectedQuoteAggId,
|
|
|
|
setSwapsTxGasLimit,
|
2021-01-26 21:31:25 +01:00
|
|
|
cancelTx,
|
2021-02-04 19:15:23 +01:00
|
|
|
} from '../../store/actions';
|
2020-11-03 00:41:28 +01:00
|
|
|
import {
|
|
|
|
AWAITING_SWAP_ROUTE,
|
|
|
|
BUILD_QUOTE_ROUTE,
|
|
|
|
LOADING_QUOTES_ROUTE,
|
|
|
|
SWAPS_ERROR_ROUTE,
|
|
|
|
SWAPS_MAINTENANCE_ROUTE,
|
2021-02-04 19:15:23 +01:00
|
|
|
} from '../../helpers/constants/routes';
|
2020-11-04 17:14:08 +01:00
|
|
|
import {
|
|
|
|
fetchSwapsFeatureLiveness,
|
|
|
|
fetchSwapsGasPrices,
|
2021-02-04 19:15:23 +01:00
|
|
|
} from '../../pages/swaps/swaps.util';
|
|
|
|
import { calcGasTotal } from '../../pages/send/send.utils';
|
2020-11-03 00:41:28 +01:00
|
|
|
import {
|
|
|
|
decimalToHex,
|
|
|
|
getValueFromWeiHex,
|
|
|
|
decGWEIToHexWEI,
|
|
|
|
hexWEIToDecGWEI,
|
2021-02-04 19:15:23 +01:00
|
|
|
} from '../../helpers/utils/conversions.util';
|
|
|
|
import { conversionLessThan } from '../../helpers/utils/conversion-util';
|
|
|
|
import { calcTokenAmount } from '../../helpers/utils/token-util';
|
2020-10-06 20:28:38 +02:00
|
|
|
import {
|
|
|
|
getSelectedAccount,
|
|
|
|
getTokenExchangeRates,
|
2020-11-10 18:39:45 +01:00
|
|
|
getUSDConversionRate,
|
2021-03-10 20:43:18 +01:00
|
|
|
getSwapsEthToken,
|
2021-02-04 19:15:23 +01:00
|
|
|
} from '../../selectors';
|
2020-10-06 20:28:38 +02:00
|
|
|
import {
|
|
|
|
ERROR_FETCHING_QUOTES,
|
|
|
|
QUOTES_NOT_AVAILABLE_ERROR,
|
|
|
|
SWAP_FAILED_ERROR,
|
2020-10-21 22:05:48 +02:00
|
|
|
SWAPS_FETCH_ORDER_CONFLICT,
|
2021-02-04 19:15:23 +01:00
|
|
|
} from '../../helpers/constants/swaps';
|
2021-03-10 21:16:44 +01:00
|
|
|
import { TRANSACTION_TYPES } from '../../../../shared/constants/transaction';
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-04 17:14:08 +01:00
|
|
|
const GAS_PRICES_LOADING_STATES = {
|
|
|
|
INITIAL: 'INITIAL',
|
|
|
|
LOADING: 'LOADING',
|
|
|
|
FAILED: 'FAILED',
|
|
|
|
COMPLETED: 'COMPLETED',
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-11-04 17:14:08 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const FALLBACK_GAS_MULTIPLIER = 1.5;
|
2020-12-15 18:16:51 +01:00
|
|
|
|
2020-10-06 20:28:38 +02:00
|
|
|
const initialState = {
|
|
|
|
aggregatorMetadata: null,
|
|
|
|
approveTxId: null,
|
|
|
|
balanceError: false,
|
|
|
|
fetchingQuotes: false,
|
|
|
|
fromToken: null,
|
|
|
|
quotesFetchStartTime: null,
|
|
|
|
topAssets: {},
|
|
|
|
toToken: null,
|
2020-11-04 17:14:08 +01:00
|
|
|
customGas: {
|
|
|
|
price: null,
|
|
|
|
limit: null,
|
|
|
|
loading: GAS_PRICES_LOADING_STATES.INITIAL,
|
|
|
|
priceEstimates: {},
|
|
|
|
priceEstimatesLastRetrieved: 0,
|
|
|
|
fallBackPrice: null,
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
const slice = createSlice({
|
|
|
|
name: 'swaps',
|
|
|
|
initialState,
|
|
|
|
reducers: {
|
|
|
|
clearSwapsState: () => initialState,
|
|
|
|
navigatedBackToBuildQuote: (state) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.approveTxId = null;
|
|
|
|
state.balanceError = false;
|
|
|
|
state.fetchingQuotes = false;
|
|
|
|
state.customGas.limit = null;
|
|
|
|
state.customGas.price = null;
|
2020-10-06 20:28:38 +02:00
|
|
|
},
|
|
|
|
retriedGetQuotes: (state) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.approveTxId = null;
|
|
|
|
state.balanceError = false;
|
|
|
|
state.fetchingQuotes = false;
|
2020-10-06 20:28:38 +02:00
|
|
|
},
|
|
|
|
setAggregatorMetadata: (state, action) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.aggregatorMetadata = action.payload;
|
2020-10-06 20:28:38 +02:00
|
|
|
},
|
|
|
|
setBalanceError: (state, action) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.balanceError = action.payload;
|
2020-10-06 20:28:38 +02:00
|
|
|
},
|
|
|
|
setFetchingQuotes: (state, action) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.fetchingQuotes = action.payload;
|
2020-10-06 20:28:38 +02:00
|
|
|
},
|
|
|
|
setFromToken: (state, action) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.fromToken = action.payload;
|
2020-10-06 20:28:38 +02:00
|
|
|
},
|
|
|
|
setQuotesFetchStartTime: (state, action) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.quotesFetchStartTime = action.payload;
|
2020-10-06 20:28:38 +02:00
|
|
|
},
|
|
|
|
setTopAssets: (state, action) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.topAssets = action.payload;
|
2020-10-06 20:28:38 +02:00
|
|
|
},
|
|
|
|
setToToken: (state, action) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.toToken = action.payload;
|
2020-10-06 20:28:38 +02:00
|
|
|
},
|
2020-11-12 20:12:04 +01:00
|
|
|
swapCustomGasModalClosed: (state) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.customGas.price = null;
|
|
|
|
state.customGas.limit = null;
|
2020-11-12 20:12:04 +01:00
|
|
|
},
|
2020-11-04 17:14:08 +01:00
|
|
|
swapCustomGasModalPriceEdited: (state, action) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.customGas.price = action.payload;
|
2020-11-04 17:14:08 +01:00
|
|
|
},
|
|
|
|
swapCustomGasModalLimitEdited: (state, action) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.customGas.limit = action.payload;
|
2020-11-04 17:14:08 +01:00
|
|
|
},
|
|
|
|
swapGasPriceEstimatesFetchStarted: (state) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.customGas.loading = GAS_PRICES_LOADING_STATES.LOADING;
|
2020-11-04 17:14:08 +01:00
|
|
|
},
|
|
|
|
swapGasPriceEstimatesFetchFailed: (state) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.customGas.loading = GAS_PRICES_LOADING_STATES.FAILED;
|
2020-11-04 17:14:08 +01:00
|
|
|
},
|
|
|
|
swapGasPriceEstimatesFetchCompleted: (state, action) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.customGas.priceEstimates = action.payload.priceEstimates;
|
|
|
|
state.customGas.loading = GAS_PRICES_LOADING_STATES.COMPLETED;
|
2020-11-04 17:14:08 +01:00
|
|
|
state.customGas.priceEstimatesLastRetrieved =
|
2021-02-04 19:15:23 +01:00
|
|
|
action.payload.priceEstimatesLastRetrieved;
|
2020-11-04 17:14:08 +01:00
|
|
|
},
|
|
|
|
retrievedFallbackSwapsGasPrice: (state, action) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
state.customGas.fallBackPrice = action.payload;
|
2020-11-04 17:14:08 +01:00
|
|
|
},
|
2020-10-06 20:28:38 +02:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const { actions, reducer } = slice;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export default reducer;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
// Selectors
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const getAggregatorMetadata = (state) => state.swaps.aggregatorMetadata;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const getBalanceError = (state) => state.swaps.balanceError;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const getFromToken = (state) => state.swaps.fromToken;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const getTopAssets = (state) => state.swaps.topAssets;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const getToToken = (state) => state.swaps.toToken;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const getFetchingQuotes = (state) => state.swaps.fetchingQuotes;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export const getQuotesFetchStartTime = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.swaps.quotesFetchStartTime;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-04 17:14:08 +01:00
|
|
|
export const getSwapsCustomizationModalPrice = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.swaps.customGas.price;
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
export const getSwapsCustomizationModalLimit = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.swaps.customGas.limit;
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
export const swapGasPriceEstimateIsLoading = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.swaps.customGas.loading === GAS_PRICES_LOADING_STATES.LOADING;
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
export const swapGasEstimateLoadingHasFailed = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.swaps.customGas.loading === GAS_PRICES_LOADING_STATES.INITIAL;
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
export const getSwapGasPriceEstimateData = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.swaps.customGas.priceEstimates;
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
export const getSwapsPriceEstimatesLastRetrieved = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.swaps.customGas.priceEstimatesLastRetrieved;
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
export const getSwapsFallbackGasPrice = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.swaps.customGas.fallBackPrice;
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
export function shouldShowCustomPriceTooLowWarning(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { average } = getSwapGasPriceEstimateData(state);
|
2020-11-04 17:14:08 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const customGasPrice = getSwapsCustomizationModalPrice(state);
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
if (!customGasPrice || average === undefined) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return false;
|
2020-11-04 17:14:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const customPriceRisksSwapFailure = conversionLessThan(
|
|
|
|
{
|
|
|
|
value: customGasPrice,
|
|
|
|
fromNumericBase: 'hex',
|
|
|
|
fromDenomination: 'WEI',
|
|
|
|
toDenomination: 'GWEI',
|
|
|
|
},
|
|
|
|
{ value: average, fromNumericBase: 'dec' },
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-04 17:14:08 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return customPriceRisksSwapFailure;
|
2020-11-04 17:14:08 +01:00
|
|
|
}
|
|
|
|
|
2020-10-06 20:28:38 +02:00
|
|
|
// Background selectors
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const getSwapsState = (state) => state.metamask.swapsState;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export const getSwapsFeatureLiveness = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.metamask.swapsState.swapsFeatureIsLive;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-12-15 21:24:22 +01:00
|
|
|
export const getSwapsQuoteRefreshTime = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.metamask.swapsState.swapsQuoteRefreshTime;
|
2020-12-15 21:24:22 +01:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export const getBackgroundSwapRouteState = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.metamask.swapsState.routeState;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export const getCustomSwapsGas = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.metamask.swapsState.customMaxGas;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export const getCustomSwapsGasPrice = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.metamask.swapsState.customGasPrice;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const getFetchParams = (state) => state.metamask.swapsState.fetchParams;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const getQuotes = (state) => state.metamask.swapsState.quotes;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export const getQuotesLastFetched = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.metamask.swapsState.quotesLastFetched;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
export const getSelectedQuote = (state) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { selectedAggId, quotes } = getSwapsState(state);
|
|
|
|
return quotes[selectedAggId];
|
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const getSwapsErrorKey = (state) => getSwapsState(state)?.errorKey;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export const getShowQuoteLoadingScreen = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.swaps.showQuoteLoadingScreen;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const getSwapsTokens = (state) => state.metamask.swapsState.tokens;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export const getSwapsWelcomeMessageSeenStatus = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
state.metamask.swapsWelcomeMessageHasBeenShown;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
export const getTopQuote = (state) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { topAggId, quotes } = getSwapsState(state);
|
|
|
|
return quotes[topAggId];
|
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const getApproveTxId = (state) => state.metamask.swapsState.approveTxId;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
export const getTradeTxId = (state) => state.metamask.swapsState.tradeTxId;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export const getUsedQuote = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
getSelectedQuote(state) || getTopQuote(state);
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
// Compound selectors
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export const getDestinationTokenInfo = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
getFetchParams(state)?.metaData?.destinationTokenInfo;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-04 17:14:08 +01:00
|
|
|
export const getUsedSwapsGasPrice = (state) =>
|
2021-02-04 19:15:23 +01:00
|
|
|
getCustomSwapsGasPrice(state) || getSwapsFallbackGasPrice(state);
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
export const getApproveTxParams = (state) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { approvalNeeded } =
|
|
|
|
getSelectedQuote(state) || getTopQuote(state) || {};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
if (!approvalNeeded) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return null;
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
const data = getSwapsState(state)?.customApproveTxData || approvalNeeded.data;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-23 17:51:43 +01:00
|
|
|
const gasPrice = getUsedSwapsGasPrice(state);
|
2021-02-04 19:15:23 +01:00
|
|
|
return { ...approvalNeeded, gasPrice, data };
|
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
// Actions / action-creators
|
|
|
|
|
|
|
|
const {
|
|
|
|
clearSwapsState,
|
|
|
|
navigatedBackToBuildQuote,
|
|
|
|
retriedGetQuotes,
|
2020-11-04 17:14:08 +01:00
|
|
|
swapGasPriceEstimatesFetchCompleted,
|
|
|
|
swapGasPriceEstimatesFetchStarted,
|
|
|
|
swapGasPriceEstimatesFetchFailed,
|
2020-10-06 20:28:38 +02:00
|
|
|
setAggregatorMetadata,
|
|
|
|
setBalanceError,
|
|
|
|
setFetchingQuotes,
|
|
|
|
setFromToken,
|
|
|
|
setQuotesFetchStartTime,
|
|
|
|
setTopAssets,
|
|
|
|
setToToken,
|
2020-11-04 17:14:08 +01:00
|
|
|
swapCustomGasModalPriceEdited,
|
|
|
|
swapCustomGasModalLimitEdited,
|
|
|
|
retrievedFallbackSwapsGasPrice,
|
2020-11-12 20:12:04 +01:00
|
|
|
swapCustomGasModalClosed,
|
2021-02-04 19:15:23 +01:00
|
|
|
} = actions;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
export {
|
|
|
|
clearSwapsState,
|
|
|
|
setAggregatorMetadata,
|
|
|
|
setBalanceError,
|
|
|
|
setFetchingQuotes,
|
|
|
|
setFromToken as setSwapsFromToken,
|
|
|
|
setQuotesFetchStartTime as setSwapQuotesFetchStartTime,
|
|
|
|
setTopAssets,
|
|
|
|
setToToken as setSwapToToken,
|
2020-11-04 17:14:08 +01:00
|
|
|
swapCustomGasModalPriceEdited,
|
|
|
|
swapCustomGasModalLimitEdited,
|
2020-11-12 20:12:04 +01:00
|
|
|
swapCustomGasModalClosed,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
export const navigateBackToBuildQuote = (history) => {
|
|
|
|
return async (dispatch) => {
|
|
|
|
// TODO: Ensure any fetch in progress is cancelled
|
2021-02-04 19:15:23 +01:00
|
|
|
await dispatch(setBackgroundSwapRouteState(''));
|
|
|
|
dispatch(navigatedBackToBuildQuote());
|
|
|
|
history.push(BUILD_QUOTE_ROUTE);
|
|
|
|
};
|
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
export const prepareForRetryGetQuotes = () => {
|
|
|
|
return async (dispatch) => {
|
|
|
|
// TODO: Ensure any fetch in progress is cancelled
|
2021-02-04 19:15:23 +01:00
|
|
|
await dispatch(resetSwapsPostFetchState());
|
|
|
|
dispatch(retriedGetQuotes());
|
|
|
|
};
|
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
export const prepareToLeaveSwaps = () => {
|
|
|
|
return async (dispatch) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
dispatch(clearSwapsState());
|
|
|
|
await dispatch(resetBackgroundSwapsState());
|
|
|
|
};
|
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-12 20:12:04 +01:00
|
|
|
export const swapsQuoteSelected = (aggId) => {
|
|
|
|
return (dispatch) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
dispatch(swapCustomGasModalLimitEdited(null));
|
|
|
|
dispatch(setSelectedQuoteAggId(aggId));
|
|
|
|
dispatch(setSwapsTxGasLimit(''));
|
|
|
|
};
|
|
|
|
};
|
2020-11-12 20:12:04 +01:00
|
|
|
|
2020-10-06 20:28:38 +02:00
|
|
|
export const fetchAndSetSwapsGasPriceInfo = () => {
|
|
|
|
return async (dispatch) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const basicEstimates = await dispatch(fetchMetaSwapsGasPriceEstimates());
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
if (basicEstimates?.fast) {
|
2021-02-04 19:15:23 +01:00
|
|
|
dispatch(setSwapsTxGasPrice(decGWEIToHexWEI(basicEstimates.fast)));
|
2020-11-04 17:14:08 +01:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
export const fetchQuotesAndSetQuoteState = (
|
|
|
|
history,
|
|
|
|
inputValue,
|
|
|
|
maxSlippage,
|
|
|
|
metaMetricsEvent,
|
|
|
|
) => {
|
2020-10-06 20:28:38 +02:00
|
|
|
return async (dispatch, getState) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
let swapsFeatureIsLive = false;
|
2020-10-06 20:28:38 +02:00
|
|
|
try {
|
2021-02-04 19:15:23 +01:00
|
|
|
swapsFeatureIsLive = await fetchSwapsFeatureLiveness();
|
2020-10-06 20:28:38 +02:00
|
|
|
} catch (error) {
|
2021-02-04 19:15:23 +01:00
|
|
|
log.error('Failed to fetch Swaps liveness, defaulting to false.', error);
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
await dispatch(setSwapsLiveness(swapsFeatureIsLive));
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
if (!swapsFeatureIsLive) {
|
2021-02-04 19:15:23 +01:00
|
|
|
await history.push(SWAPS_MAINTENANCE_ROUTE);
|
|
|
|
return;
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const state = getState();
|
|
|
|
const fetchParams = getFetchParams(state);
|
|
|
|
const selectedAccount = getSelectedAccount(state);
|
|
|
|
const balanceError = getBalanceError(state);
|
2020-11-03 00:41:28 +01:00
|
|
|
const fetchParamsFromToken =
|
|
|
|
fetchParams?.metaData?.sourceTokenInfo?.symbol === 'ETH'
|
2021-03-10 20:43:18 +01:00
|
|
|
? getSwapsEthToken(state)
|
2021-02-04 19:15:23 +01:00
|
|
|
: fetchParams?.metaData?.sourceTokenInfo;
|
|
|
|
const selectedFromToken = getFromToken(state) || fetchParamsFromToken || {};
|
2020-11-03 00:41:28 +01:00
|
|
|
const selectedToToken =
|
2021-02-04 19:15:23 +01:00
|
|
|
getToToken(state) || fetchParams?.metaData?.destinationTokenInfo || {};
|
2020-10-06 20:28:38 +02:00
|
|
|
const {
|
|
|
|
address: fromTokenAddress,
|
|
|
|
symbol: fromTokenSymbol,
|
|
|
|
decimals: fromTokenDecimals,
|
|
|
|
iconUrl: fromTokenIconUrl,
|
|
|
|
balance: fromTokenBalance,
|
2021-02-04 19:15:23 +01:00
|
|
|
} = selectedFromToken;
|
2020-10-06 20:28:38 +02:00
|
|
|
const {
|
|
|
|
address: toTokenAddress,
|
|
|
|
symbol: toTokenSymbol,
|
|
|
|
decimals: toTokenDecimals,
|
|
|
|
iconUrl: toTokenIconUrl,
|
2021-02-04 19:15:23 +01:00
|
|
|
} = selectedToToken;
|
|
|
|
await dispatch(setBackgroundSwapRouteState('loading'));
|
|
|
|
history.push(LOADING_QUOTES_ROUTE);
|
|
|
|
dispatch(setFetchingQuotes(true));
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const contractExchangeRates = getTokenExchangeRates(state);
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
let destinationTokenAddedForSwap = false;
|
2020-10-06 20:28:38 +02:00
|
|
|
if (toTokenSymbol !== 'ETH' && !contractExchangeRates[toTokenAddress]) {
|
2021-02-04 19:15:23 +01:00
|
|
|
destinationTokenAddedForSwap = true;
|
2020-11-03 00:41:28 +01:00
|
|
|
await dispatch(
|
|
|
|
addToken(
|
|
|
|
toTokenAddress,
|
|
|
|
toTokenSymbol,
|
|
|
|
toTokenDecimals,
|
|
|
|
toTokenIconUrl,
|
|
|
|
true,
|
|
|
|
),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
2020-11-03 00:41:28 +01:00
|
|
|
if (
|
|
|
|
fromTokenSymbol !== 'ETH' &&
|
|
|
|
!contractExchangeRates[fromTokenAddress] &&
|
|
|
|
fromTokenBalance &&
|
|
|
|
new BigNumber(fromTokenBalance, 16).gt(0)
|
|
|
|
) {
|
|
|
|
dispatch(
|
|
|
|
addToken(
|
|
|
|
fromTokenAddress,
|
|
|
|
fromTokenSymbol,
|
|
|
|
fromTokenDecimals,
|
|
|
|
fromTokenIconUrl,
|
|
|
|
true,
|
|
|
|
),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const swapsTokens = getSwapsTokens(state);
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const sourceTokenInfo =
|
|
|
|
swapsTokens?.find(({ address }) => address === fromTokenAddress) ||
|
2021-02-04 19:15:23 +01:00
|
|
|
selectedFromToken;
|
2020-11-03 00:41:28 +01:00
|
|
|
const destinationTokenInfo =
|
|
|
|
swapsTokens?.find(({ address }) => address === toTokenAddress) ||
|
2021-02-04 19:15:23 +01:00
|
|
|
selectedToToken;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
dispatch(setFromToken(selectedFromToken));
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
metaMetricsEvent({
|
|
|
|
event: 'Quotes Requested',
|
|
|
|
category: 'swaps',
|
2020-12-02 22:41:30 +01:00
|
|
|
sensitiveProperties: {
|
2020-10-06 20:28:38 +02:00
|
|
|
token_from: fromTokenSymbol,
|
|
|
|
token_from_amount: String(inputValue),
|
|
|
|
token_to: toTokenSymbol,
|
|
|
|
request_type: balanceError ? 'Quote' : 'Order',
|
|
|
|
slippage: maxSlippage,
|
|
|
|
custom_slippage: maxSlippage !== 2,
|
|
|
|
anonymizedData: true,
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
try {
|
2021-02-04 19:15:23 +01:00
|
|
|
const fetchStartTime = Date.now();
|
|
|
|
dispatch(setQuotesFetchStartTime(fetchStartTime));
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const fetchAndSetQuotesPromise = dispatch(
|
|
|
|
fetchAndSetQuotes(
|
|
|
|
{
|
|
|
|
slippage: maxSlippage,
|
|
|
|
sourceToken: fromTokenAddress,
|
|
|
|
destinationToken: toTokenAddress,
|
|
|
|
value: inputValue,
|
|
|
|
fromAddress: selectedAccount.address,
|
|
|
|
destinationTokenAddedForSwap,
|
|
|
|
balanceError,
|
|
|
|
sourceDecimals: fromTokenDecimals,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
sourceTokenInfo,
|
|
|
|
destinationTokenInfo,
|
|
|
|
accountBalance: selectedAccount.balance,
|
|
|
|
},
|
|
|
|
),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const gasPriceFetchPromise = dispatch(fetchAndSetSwapsGasPriceInfo());
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const [[fetchedQuotes, selectedAggId]] = await Promise.all([
|
|
|
|
fetchAndSetQuotesPromise,
|
|
|
|
gasPriceFetchPromise,
|
2021-02-04 19:15:23 +01:00
|
|
|
]);
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
if (Object.values(fetchedQuotes)?.length === 0) {
|
|
|
|
metaMetricsEvent({
|
|
|
|
event: 'No Quotes Available',
|
|
|
|
category: 'swaps',
|
2020-12-02 22:41:30 +01:00
|
|
|
sensitiveProperties: {
|
2020-10-06 20:28:38 +02:00
|
|
|
token_from: fromTokenSymbol,
|
|
|
|
token_from_amount: String(inputValue),
|
|
|
|
token_to: toTokenSymbol,
|
|
|
|
request_type: balanceError ? 'Quote' : 'Order',
|
|
|
|
slippage: maxSlippage,
|
|
|
|
custom_slippage: maxSlippage !== 2,
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
dispatch(setSwapsErrorKey(QUOTES_NOT_AVAILABLE_ERROR));
|
2020-10-06 20:28:38 +02:00
|
|
|
} else {
|
2021-02-04 19:15:23 +01:00
|
|
|
const newSelectedQuote = fetchedQuotes[selectedAggId];
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
metaMetricsEvent({
|
|
|
|
event: 'Quotes Received',
|
|
|
|
category: 'swaps',
|
2020-12-02 22:41:30 +01:00
|
|
|
sensitiveProperties: {
|
2020-10-06 20:28:38 +02:00
|
|
|
token_from: fromTokenSymbol,
|
|
|
|
token_from_amount: String(inputValue),
|
|
|
|
token_to: toTokenSymbol,
|
2020-11-03 00:41:28 +01:00
|
|
|
token_to_amount: calcTokenAmount(
|
|
|
|
newSelectedQuote.destinationAmount,
|
|
|
|
newSelectedQuote.decimals || 18,
|
|
|
|
),
|
2020-10-06 20:28:38 +02:00
|
|
|
request_type: balanceError ? 'Quote' : 'Order',
|
|
|
|
slippage: maxSlippage,
|
|
|
|
custom_slippage: maxSlippage !== 2,
|
|
|
|
response_time: Date.now() - fetchStartTime,
|
|
|
|
best_quote_source: newSelectedQuote.aggregator,
|
|
|
|
available_quotes: Object.values(fetchedQuotes)?.length,
|
|
|
|
anonymizedData: true,
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
dispatch(setInitialGasEstimate(selectedAggId));
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2020-10-21 22:05:48 +02:00
|
|
|
// A newer swap request is running, so simply bail and let the newer request respond
|
|
|
|
if (e.message === SWAPS_FETCH_ORDER_CONFLICT) {
|
2021-02-04 19:15:23 +01:00
|
|
|
log.debug(`Swap fetch order conflict detected; ignoring older request`);
|
|
|
|
return;
|
2020-10-21 22:05:48 +02:00
|
|
|
}
|
2020-10-26 23:22:46 +01:00
|
|
|
// TODO: Check for any errors we should expect to occur in production, and report others to Sentry
|
2021-02-04 19:15:23 +01:00
|
|
|
log.error(`Error fetching quotes: `, e);
|
2020-11-04 17:14:08 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
dispatch(setSwapsErrorKey(ERROR_FETCHING_QUOTES));
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
dispatch(setFetchingQuotes(false));
|
|
|
|
};
|
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
export const signAndSendTransactions = (history, metaMetricsEvent) => {
|
|
|
|
return async (dispatch, getState) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
let swapsFeatureIsLive = false;
|
2020-10-06 20:28:38 +02:00
|
|
|
try {
|
2021-02-04 19:15:23 +01:00
|
|
|
swapsFeatureIsLive = await fetchSwapsFeatureLiveness();
|
2020-10-06 20:28:38 +02:00
|
|
|
} catch (error) {
|
2021-02-04 19:15:23 +01:00
|
|
|
log.error('Failed to fetch Swaps liveness, defaulting to false.', error);
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
await dispatch(setSwapsLiveness(swapsFeatureIsLive));
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
if (!swapsFeatureIsLive) {
|
2021-02-04 19:15:23 +01:00
|
|
|
await history.push(SWAPS_MAINTENANCE_ROUTE);
|
|
|
|
return;
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const state = getState();
|
|
|
|
const customSwapsGas = getCustomSwapsGas(state);
|
|
|
|
const fetchParams = getFetchParams(state);
|
|
|
|
const { metaData, value: swapTokenValue, slippage } = fetchParams;
|
|
|
|
const { sourceTokenInfo = {}, destinationTokenInfo = {} } = metaData;
|
|
|
|
await dispatch(setBackgroundSwapRouteState('awaiting'));
|
|
|
|
await dispatch(stopPollingForQuotes());
|
|
|
|
history.push(AWAITING_SWAP_ROUTE);
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const { fast: fastGasEstimate } = getSwapGasPriceEstimateData(state);
|
2020-11-04 17:14:08 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const usedQuote = getUsedQuote(state);
|
|
|
|
const usedTradeTxParams = usedQuote.trade;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const estimatedGasLimit = new BigNumber(
|
|
|
|
usedQuote?.gasEstimate || `0x0`,
|
|
|
|
16,
|
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
const estimatedGasLimitWithMultiplier = estimatedGasLimit
|
2020-12-15 18:16:51 +01:00
|
|
|
.times(usedQuote?.gasMultiplier || FALLBACK_GAS_MULTIPLIER, 10)
|
2020-11-03 00:41:28 +01:00
|
|
|
.round(0)
|
2021-02-04 19:15:23 +01:00
|
|
|
.toString(16);
|
2020-11-03 00:41:28 +01:00
|
|
|
const maxGasLimit =
|
|
|
|
customSwapsGas ||
|
2020-12-15 18:16:51 +01:00
|
|
|
(usedQuote?.gasEstimate
|
|
|
|
? estimatedGasLimitWithMultiplier
|
2021-02-04 19:15:23 +01:00
|
|
|
: `0x${decimalToHex(usedQuote?.maxGas || 0)}`);
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const usedGasPrice = getUsedSwapsGasPrice(state);
|
|
|
|
usedTradeTxParams.gas = maxGasLimit;
|
|
|
|
usedTradeTxParams.gasPrice = usedGasPrice;
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const usdConversionRate = getUSDConversionRate(state);
|
2020-11-03 00:41:28 +01:00
|
|
|
const destinationValue = calcTokenAmount(
|
|
|
|
usedQuote.destinationAmount,
|
|
|
|
destinationTokenInfo.decimals || 18,
|
2021-02-04 19:15:23 +01:00
|
|
|
).toPrecision(8);
|
2020-11-03 00:41:28 +01:00
|
|
|
const usedGasLimitEstimate =
|
|
|
|
usedQuote?.gasEstimateWithRefund ||
|
2021-02-04 19:15:23 +01:00
|
|
|
`0x${decimalToHex(usedQuote?.averageGas || 0)}`;
|
2020-11-03 00:41:28 +01:00
|
|
|
const totalGasLimitEstimate = new BigNumber(usedGasLimitEstimate, 16)
|
|
|
|
.plus(usedQuote.approvalNeeded?.gas || '0x0', 16)
|
2021-02-04 19:15:23 +01:00
|
|
|
.toString(16);
|
2020-11-10 18:39:45 +01:00
|
|
|
const gasEstimateTotalInUSD = getValueFromWeiHex({
|
2020-10-06 20:28:38 +02:00
|
|
|
value: calcGasTotal(totalGasLimitEstimate, usedGasPrice),
|
|
|
|
toCurrency: 'usd',
|
2020-11-10 18:39:45 +01:00
|
|
|
conversionRate: usdConversionRate,
|
2020-10-06 20:28:38 +02:00
|
|
|
numberOfDecimals: 6,
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-10-27 20:12:06 +01:00
|
|
|
|
2020-10-06 20:28:38 +02:00
|
|
|
const swapMetaData = {
|
|
|
|
token_from: sourceTokenInfo.symbol,
|
|
|
|
token_from_amount: String(swapTokenValue),
|
|
|
|
token_to: destinationTokenInfo.symbol,
|
|
|
|
token_to_amount: destinationValue,
|
|
|
|
slippage,
|
|
|
|
custom_slippage: slippage !== 2,
|
|
|
|
best_quote_source: getTopQuote(state)?.aggregator,
|
|
|
|
available_quotes: getQuotes(state)?.length,
|
2020-11-03 00:41:28 +01:00
|
|
|
other_quote_selected:
|
|
|
|
usedQuote.aggregator !== getTopQuote(state)?.aggregator,
|
|
|
|
other_quote_selected_source:
|
|
|
|
usedQuote.aggregator === getTopQuote(state)?.aggregator
|
|
|
|
? ''
|
|
|
|
: usedQuote.aggregator,
|
2020-11-10 18:39:45 +01:00
|
|
|
gas_fees: gasEstimateTotalInUSD,
|
2020-10-22 22:04:34 +02:00
|
|
|
estimated_gas: estimatedGasLimit.toString(10),
|
2020-11-04 17:14:08 +01:00
|
|
|
suggested_gas_price: fastGasEstimate,
|
|
|
|
used_gas_price: hexWEIToDecGWEI(usedGasPrice),
|
2020-11-09 20:49:41 +01:00
|
|
|
average_savings: usedQuote.savings?.total,
|
|
|
|
performance_savings: usedQuote.savings?.performance,
|
|
|
|
fee_savings: usedQuote.savings?.fee,
|
|
|
|
median_metamask_fee: usedQuote.savings?.medianMetaMaskFee,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-12-02 22:41:30 +01:00
|
|
|
metaMetricsEvent({
|
2020-10-06 20:28:38 +02:00
|
|
|
event: 'Swap Started',
|
|
|
|
category: 'swaps',
|
2020-12-02 22:41:30 +01:00
|
|
|
sensitiveProperties: swapMetaData,
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
let finalApproveTxMeta;
|
|
|
|
const approveTxParams = getApproveTxParams(state);
|
2020-10-06 20:28:38 +02:00
|
|
|
if (approveTxParams) {
|
2020-11-03 00:41:28 +01:00
|
|
|
const approveTxMeta = await dispatch(
|
|
|
|
addUnapprovedTransaction(
|
|
|
|
{ ...approveTxParams, amount: '0x0' },
|
|
|
|
'metamask',
|
|
|
|
),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
await dispatch(setApproveTxId(approveTxMeta.id));
|
2020-11-03 00:41:28 +01:00
|
|
|
finalApproveTxMeta = await dispatch(
|
|
|
|
updateTransaction(
|
|
|
|
{
|
|
|
|
...approveTxMeta,
|
2021-03-10 21:16:44 +01:00
|
|
|
type: TRANSACTION_TYPES.SWAP_APPROVAL,
|
2020-11-03 00:41:28 +01:00
|
|
|
sourceTokenSymbol: sourceTokenInfo.symbol,
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-06 20:28:38 +02:00
|
|
|
try {
|
2021-02-04 19:15:23 +01:00
|
|
|
await dispatch(updateAndApproveTx(finalApproveTxMeta, true));
|
2020-10-06 20:28:38 +02:00
|
|
|
} catch (e) {
|
2021-02-04 19:15:23 +01:00
|
|
|
await dispatch(setSwapsErrorKey(SWAP_FAILED_ERROR));
|
|
|
|
history.push(SWAPS_ERROR_ROUTE);
|
|
|
|
return;
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const tradeTxMeta = await dispatch(
|
|
|
|
addUnapprovedTransaction(usedTradeTxParams, 'metamask'),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
dispatch(setTradeTxId(tradeTxMeta.id));
|
2021-01-22 22:14:57 +01:00
|
|
|
|
|
|
|
// The simulationFails property is added during the transaction controllers
|
|
|
|
// addUnapprovedTransaction call if the estimateGas call fails. In cases
|
|
|
|
// when no approval is required, this indicates that the swap will likely
|
|
|
|
// fail. There was an earlier estimateGas call made by the swaps controller,
|
|
|
|
// but it is possible that external conditions have change since then, and
|
|
|
|
// a previously succeeding estimate gas call could now fail. By checking for
|
|
|
|
// the `simulationFails` property here, we can reduce the number of swap
|
|
|
|
// transactions that get published to the blockchain only to fail and thereby
|
|
|
|
// waste the user's funds on gas.
|
|
|
|
if (!approveTxParams && tradeTxMeta.simulationFails) {
|
2021-02-04 19:15:23 +01:00
|
|
|
await dispatch(cancelTx(tradeTxMeta, false));
|
|
|
|
await dispatch(setSwapsErrorKey(SWAP_FAILED_ERROR));
|
|
|
|
history.push(SWAPS_ERROR_ROUTE);
|
|
|
|
return;
|
2021-01-22 22:14:57 +01:00
|
|
|
}
|
2020-11-03 00:41:28 +01:00
|
|
|
const finalTradeTxMeta = await dispatch(
|
|
|
|
updateTransaction(
|
|
|
|
{
|
|
|
|
...tradeTxMeta,
|
|
|
|
sourceTokenSymbol: sourceTokenInfo.symbol,
|
|
|
|
destinationTokenSymbol: destinationTokenInfo.symbol,
|
2021-03-10 21:16:44 +01:00
|
|
|
type: TRANSACTION_TYPES.SWAP,
|
2020-11-03 00:41:28 +01:00
|
|
|
destinationTokenDecimals: destinationTokenInfo.decimals,
|
|
|
|
destinationTokenAddress: destinationTokenInfo.address,
|
|
|
|
swapMetaData,
|
|
|
|
swapTokenValue,
|
|
|
|
approvalTxId: finalApproveTxMeta?.id,
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-10-06 20:28:38 +02:00
|
|
|
try {
|
2021-02-04 19:15:23 +01:00
|
|
|
await dispatch(updateAndApproveTx(finalTradeTxMeta, true));
|
2020-10-06 20:28:38 +02:00
|
|
|
} catch (e) {
|
2021-02-04 19:15:23 +01:00
|
|
|
await dispatch(setSwapsErrorKey(SWAP_FAILED_ERROR));
|
|
|
|
history.push(SWAPS_ERROR_ROUTE);
|
|
|
|
return;
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
await forceUpdateMetamaskState(dispatch);
|
|
|
|
};
|
|
|
|
};
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
export function fetchMetaSwapsGasPriceEstimates() {
|
|
|
|
return async (dispatch, getState) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const state = getState();
|
2020-11-04 17:14:08 +01:00
|
|
|
const priceEstimatesLastRetrieved = getSwapsPriceEstimatesLastRetrieved(
|
|
|
|
state,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-04 17:14:08 +01:00
|
|
|
const timeLastRetrieved =
|
|
|
|
priceEstimatesLastRetrieved ||
|
2020-11-24 16:38:04 +01:00
|
|
|
(await getStorageItem('METASWAP_GAS_PRICE_ESTIMATES_LAST_RETRIEVED')) ||
|
2021-02-04 19:15:23 +01:00
|
|
|
0;
|
2020-11-04 17:14:08 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
dispatch(swapGasPriceEstimatesFetchStarted());
|
2020-11-04 17:14:08 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
let priceEstimates;
|
2020-11-04 17:14:08 +01:00
|
|
|
try {
|
|
|
|
if (Date.now() - timeLastRetrieved > 30000) {
|
2021-02-04 19:15:23 +01:00
|
|
|
priceEstimates = await fetchSwapsGasPrices();
|
2020-11-04 17:14:08 +01:00
|
|
|
} else {
|
2020-11-24 16:38:04 +01:00
|
|
|
const cachedPriceEstimates = await getStorageItem(
|
2020-11-04 17:14:08 +01:00
|
|
|
'METASWAP_GAS_PRICE_ESTIMATES',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
priceEstimates = cachedPriceEstimates || (await fetchSwapsGasPrices());
|
2020-11-04 17:14:08 +01:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2021-02-04 19:15:23 +01:00
|
|
|
log.warn('Fetching swaps gas prices failed:', e);
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
if (!e.message?.match(/NetworkError|Fetch failed with status:/u)) {
|
2021-02-04 19:15:23 +01:00
|
|
|
throw e;
|
2020-11-04 17:14:08 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
dispatch(swapGasPriceEstimatesFetchFailed());
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
try {
|
2021-02-04 19:15:23 +01:00
|
|
|
const gasPrice = await global.ethQuery.gasPrice();
|
|
|
|
const gasPriceInDecGWEI = hexWEIToDecGWEI(gasPrice.toString(10));
|
2020-11-04 17:14:08 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
dispatch(retrievedFallbackSwapsGasPrice(gasPriceInDecGWEI));
|
|
|
|
return null;
|
2020-11-04 17:14:08 +01:00
|
|
|
} catch (networkGasPriceError) {
|
|
|
|
console.error(
|
|
|
|
`Failed to retrieve fallback gas price: `,
|
|
|
|
networkGasPriceError,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
return null;
|
2020-11-04 17:14:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const timeRetrieved = Date.now();
|
2020-11-04 17:14:08 +01:00
|
|
|
|
2020-11-24 16:38:04 +01:00
|
|
|
await Promise.all([
|
|
|
|
setStorageItem('METASWAP_GAS_PRICE_ESTIMATES', priceEstimates),
|
|
|
|
setStorageItem(
|
|
|
|
'METASWAP_GAS_PRICE_ESTIMATES_LAST_RETRIEVED',
|
|
|
|
timeRetrieved,
|
|
|
|
),
|
2021-02-04 19:15:23 +01:00
|
|
|
]);
|
2020-11-04 17:14:08 +01:00
|
|
|
|
|
|
|
dispatch(
|
|
|
|
swapGasPriceEstimatesFetchCompleted({
|
|
|
|
priceEstimates,
|
|
|
|
priceEstimatesLastRetrieved: timeRetrieved,
|
|
|
|
}),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
return priceEstimates;
|
|
|
|
};
|
2020-11-04 17:14:08 +01:00
|
|
|
}
|