Replace Kovan infura endpoint

This commit is contained in:
Victor Baranov 2021-01-19 15:13:33 +03:00
parent 45aadd238c
commit 5340c60ca8
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ function getRPCEndpoints(network) {
case GOERLI_CODE:
return ['https://rpc.slock.it/goerli/']
case KOVAN_CODE:
return ['https://kovan.infura.io/']
return ['https://kovan.poa.network/']
case SOKOL_CODE:
return ['https://sokol.poa.network/']
case POA_CORE_CODE:

View File

@ -202,7 +202,7 @@ describe('eth-net-props', () => {
const kovanRPCEndpoints = RPCEndpoints.getRPCEndpoints(42)
assert.equal(kovanRPCEndpoints.length, 1)
if (kovanRPCEndpoints.length > 0) {
assert.equal(kovanRPCEndpoints[0], 'https://kovan.infura.io/')
assert.equal(kovanRPCEndpoints[0], 'https://kovan.poa.network/')
}
})
it(`${claimPrefix} Ethereum`, () => {