From 1d6f9b4a09b8095f8f430c59f51ddd0477254763 Mon Sep 17 00:00:00 2001 From: Charles Cunningham Date: Wed, 22 Jan 2020 13:10:59 +0100 Subject: [PATCH] added project ID for infura gateway --- ts/contracts/contractsGateway.ts | 2 +- ts/ethereum/ethereum.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/contracts/contractsGateway.ts b/ts/contracts/contractsGateway.ts index eb2ebe49..1b9630e9 100644 --- a/ts/contracts/contractsGateway.ts +++ b/ts/contracts/contractsGateway.ts @@ -68,5 +68,5 @@ export class ContractsGateway implements IContractsGateway { } export const jolocomContractsGateway = new ContractsGateway( - 'https://rinkeby.infura.io/', + 'https://rinkeby.infura.io/v3/64fa85ca0b28483ea90919a83630d5d8', ) diff --git a/ts/ethereum/ethereum.ts b/ts/ethereum/ethereum.ts index 8e55d540..f54b3081 100644 --- a/ts/ethereum/ethereum.ts +++ b/ts/ethereum/ethereum.ts @@ -58,6 +58,6 @@ export class EthResolver implements IEthereumConnector { /* Instantiates a resolver using the default configuration */ export const jolocomEthereumResolver = new EthResolver({ - providerUrl: 'https://rinkeby.infura.io/', + providerUrl: 'https://rinkeby.infura.io/v3/64fa85ca0b28483ea90919a83630d5d8', contractAddress: '0xd4351c3f383d79ba378ed1875275b1e7b960f120', })