rename gorli to goerli

This commit is contained in:
Moody Salem 2021-05-04 12:31:51 -05:00
parent 24d8b4abc9
commit 2efe8250ae
No known key found for this signature in database
GPG Key ID: 8CB5CD10385138DB
2 changed files with 3 additions and 3 deletions

@ -1,18 +1,18 @@
import { ChainId } from '@uniswap/sdk-core'
import gorli from './gorli.json'
import goerli from './goerli.json'
import ropsten from './ropsten.json'
import rinkeby from './rinkeby.json'
import kovan from './kovan.json'
import mainnet from './mainnet.json'
function constructAddressMap(
key: keyof typeof gorli | keyof typeof ropsten | keyof typeof rinkeby | keyof typeof mainnet
key: keyof typeof goerli | keyof typeof ropsten | keyof typeof rinkeby | keyof typeof mainnet
): { [chainId in ChainId]?: string } {
return {
[ChainId.ROPSTEN]: ropsten[key],
[ChainId.KOVAN]: kovan[key],
[ChainId.RINKEBY]: rinkeby[key],
[ChainId.GÖRLI]: gorli[key],
[ChainId.GÖRLI]: goerli[key],
}
}