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:
parent
c86ceacfd9
commit
21868e08e6
@ -21,3 +21,5 @@ export const DEFAULT_ERC20_APPROVE_GAS = '0x1d4c0';
|
|||||||
|
|
||||||
export const SWAPS_CONTRACT_ADDRESS =
|
export const SWAPS_CONTRACT_ADDRESS =
|
||||||
'0x881d40237659c251811cec9c364ef91dc08d300c';
|
'0x881d40237659c251811cec9c364ef91dc08d300c';
|
||||||
|
|
||||||
|
export const METASWAP_API_HOST = 'https://api.metaswap.codefi.network';
|
||||||
|
@ -2,7 +2,10 @@ import log from 'loglevel';
|
|||||||
import BigNumber from 'bignumber.js';
|
import BigNumber from 'bignumber.js';
|
||||||
import abi from 'human-standard-token-abi';
|
import abi from 'human-standard-token-abi';
|
||||||
import { isValidAddress } from 'ethereumjs-util';
|
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 {
|
import {
|
||||||
calcTokenValue,
|
calcTokenValue,
|
||||||
calcTokenAmount,
|
calcTokenAmount,
|
||||||
@ -27,8 +30,6 @@ const TOKEN_TRANSFER_LOG_TOPIC_HASH =
|
|||||||
|
|
||||||
const CACHE_REFRESH_ONE_HOUR = 3600000;
|
const CACHE_REFRESH_ONE_HOUR = 3600000;
|
||||||
|
|
||||||
const METASWAP_API_HOST = 'https://api.metaswap.codefi.network';
|
|
||||||
|
|
||||||
const getBaseApi = function (type) {
|
const getBaseApi = function (type) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 'trade':
|
case 'trade':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user