Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

update infura keys #301

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const kovanConfig = {
}
},
web3: {
provider: { infuraProjectId: 'c3f0f26a4c1742e0949d8eedfc47be67' }
provider: { infuraProjectId: '406b22e3688c42898054d22555f43271' }
}
};
const testchainConfig = {
Expand Down
2 changes: 1 addition & 1 deletion packages/dai-plugin-mcd/test/integration/index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const infuraProjectId = 'c3f0f26a4c1742e0949d8eedfc47be67';
export const infuraProjectId = '406b22e3688c42898054d22555f43271';
2 changes: 1 addition & 1 deletion packages/dai-plugin-migrations/test/kovan/kovan.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function mcdMaker({
gasPrice: 15000000000
},
provider: {
infuraProjectId: 'c3f0f26a4c1742e0949d8eedfc47be67'
infuraProjectId: '406b22e3688c42898054d22555f43271'
}
},
addressOverrides: { MCD_JOIN_ETH_B: '0x0', MCD_JOIN_ZRX_A: '0x0' },
Expand Down
2 changes: 1 addition & 1 deletion packages/dai-plugin-scd/test/helpers/serviceBuilders.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import ProviderType from '../../src/web3/ProviderType';
import has from 'lodash/has';
import merge from 'lodash/merge';

// export const infuraProjectId = 'c3f0f26a4c1742e0949d8eedfc47be67'; //dai.js project id
// export const infuraProjectId = '406b22e3688c42898054d22555f43271'; //dai.js project id
//
// export const kovanProviderConfig = {
// web3: {
Expand Down
2 changes: 1 addition & 1 deletion packages/dai-plugin-scd/test/integration/index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const infuraProjectId = 'c3f0f26a4c1742e0949d8eedfc47be67';
export const infuraProjectId = '406b22e3688c42898054d22555f43271';
4 changes: 2 additions & 2 deletions packages/dai/scripts/repl.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const env = {
kovan: {
fromBlock: 4750000,
config: {
url: 'https://kovan.infura.io/v3/c3f0f26a4c1742e0949d8eedfc47be67',
url: 'https://kovan.infura.io/v3/406b22e3688c42898054d22555f43271',
privateKey: process.env.KOVAN_PRIVATE_KEY,
smartContract: { addressOverrides },
token: {
Expand All @@ -56,7 +56,7 @@ const env = {
mainnet: {
config: {
fromBlock: 4750000,
url: 'https://mainnet.infura.io/v3/c3f0f26a4c1742e0949d8eedfc47be67'
url: 'https://mainnet.infura.io/v3/406b22e3688c42898054d22555f43271'
}
}
};
Expand Down
2 changes: 1 addition & 1 deletion packages/dai/test/helpers/serviceBuilders.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import ProviderType from '../../src/eth/web3/ProviderType';
import has from 'lodash/has';
import merge from 'lodash/merge';

export const infuraProjectId = 'c3f0f26a4c1742e0949d8eedfc47be67'; //dai.js project id
export const infuraProjectId = '406b22e3688c42898054d22555f43271'; //dai.js project id

export const kovanProviderConfig = {
web3: {
Expand Down