Skip to content

Commit

Permalink
fix: Overrides default rpc to pokt for mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
rossneilson committed Nov 23, 2022
1 parent dbd3447 commit 3a2d75d
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 3a2d75d

Please sign in to comment.