use constant for the route

This commit is contained in:
Iuri Matias 2018-08-06 11:40:32 -04:00
parent d4febce1d4
commit b95b8e8534

View File

@ -66,13 +66,13 @@ export function webSocketBlockHeader() {
}
export function fetchContract(contractName) {
return axios.get('http://localhost:8000/embark-api/contract/' + contractName);
return axios.get(`${constants.httpEndpoint}/contract/${contractName}`);
}
export function fetchContracts() {
return axios.get('http://localhost:8000/embark-api/contracts');
return axios.get(`${constants.httpEndpoint}/contracts`);
}
export function fetchContractProfile(contractName) {
return axios.get('http://localhost:8000/embark-api/profiler/' + contractName);
return axios.get(`${constants.httpEndpoint}/profiler/${contractName}`);
}