1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Move the METASWAP_API_HOST constant to the swaps constant file (#10612)

This commit is contained in:
Dan J Miller 2021-03-09 12:36:44 -03:30 committed by GitHub
parent c86ceacfd9
commit 21868e08e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View File

@ -21,3 +21,5 @@ export const DEFAULT_ERC20_APPROVE_GAS = '0x1d4c0';
export const SWAPS_CONTRACT_ADDRESS =
'0x881d40237659c251811cec9c364ef91dc08d300c';
export const METASWAP_API_HOST = 'https://api.metaswap.codefi.network';

View File

@ -2,7 +2,10 @@ import log from 'loglevel';
import BigNumber from 'bignumber.js';
import abi from 'human-standard-token-abi';
import { isValidAddress } from 'ethereumjs-util';
import { ETH_SWAPS_TOKEN_OBJECT } from '../../helpers/constants/swaps';
import {
ETH_SWAPS_TOKEN_OBJECT,
METASWAP_API_HOST,
} from '../../helpers/constants/swaps';
import {
calcTokenValue,
calcTokenAmount,
@ -27,8 +30,6 @@ const TOKEN_TRANSFER_LOG_TOPIC_HASH =
const CACHE_REFRESH_ONE_HOUR = 3600000;
const METASWAP_API_HOST = 'https://api.metaswap.codefi.network';
const getBaseApi = function (type) {
switch (type) {
case 'trade':