We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25e680b commit e4cb3f8Copy full SHA for e4cb3f8
services/external-adapter/index.ts
@@ -27,7 +27,7 @@ async function getSLAData(address): Promise<SLAData> {
27
const web3 = new Web3(web3Uri);
28
const slaContract = new web3.eth.Contract(SLAABI, address);
29
const ipfsCID = await slaContract.methods.ipfsHash().call();
30
- console.log(`SLA IPFS url: ${process.env.IPFS_GATEWAY_URI}/ipfs/${ipfsCID}`);
+ console.log(`SLA IPFS url: ${process.env.DEVELOP_IPFS_URI}/ipfs/${ipfsCID}`);
31
const periodType = await slaContract.methods.periodType().call();
32
const messengerAddress = await slaContract.methods.messengerAddress().call();
33
const { data } = await axios.get(
0 commit comments