Skip to content

Commit

Permalink
Merge pull request #432 from rossneilson/fix/default-chain-rpc
Browse files Browse the repository at this point in the history
fix: Overrides default rpc to pokt for mainnet
  • Loading branch information
rossneilson authored Nov 23, 2022
2 parents 4807ea3 + 3a2d75d commit e32c792
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/provider/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const gnosisChain: Chain = {
},
rpcUrls: {
default:
'https://poa-xdai-archival.gateway.pokt.network/v1/lb/61d897d4a065f5003a113d9a',
'https://poa-xdai-archival.gateway.pokt.network/v1/lb/dda01e253305bbeac6507a80',
},
blockExplorers: {
default: { name: 'Gnosis', url: 'https://gnosisscan.io' },
Expand All @@ -20,7 +20,13 @@ const gnosisChain: Chain = {
};

export const chains: Chain[] = [
chain.mainnet,
{
...chain.mainnet,
rpcUrls: {
default:
'https://eth-mainnet.gateway.pokt.network/v1/lb/dda01e253305bbeac6507a80',
},
},
chain.goerli,
chain.arbitrum,
chain.arbitrumRinkeby,
Expand Down

0 comments on commit e32c792

Please sign in to comment.