1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

fix infura env var

This commit is contained in:
Matthias Kretschmann 2020-07-14 18:35:53 +02:00
parent 7a9e658d03
commit a29ec8a219
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
INFURA_PROJECT_ID="xxx" GATSBY_INFURA_PROJECT_ID="xxx"
# Local config # Local config
NODE_URI='http://localhost:8545' NODE_URI='http://localhost:8545'

View File

@ -13,5 +13,5 @@ module.exports = {
}, },
// Main, Rinkeby, Kovan // Main, Rinkeby, Kovan
networks: [1, 4, 42], networks: [1, 4, 42],
infuraProjectId: process.env.INFURA_PROJECT_ID infuraProjectId: process.env.GATSBY_INFURA_PROJECT_ID
} }