Skip to content

Commit

Permalink
feat: add optimism chain (#281)
Browse files Browse the repository at this point in the history
* feat: add optimism chain

* feat: add op sepolia testnet
  • Loading branch information
0xGabi committed Sep 21, 2023
1 parent 7b3a9b5 commit 8b10d2f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,30 @@ const CHAIN_INFORMATION = new Map<number, ChainInformation | ChainType>([
testnet: true,
},
],
[
10,
{
id: 10,
nativeCurrency: ETH,
type: 'optimism',
fullName: 'OP Mainnet',
shortName: 'Optimism',
explorerUrl: `https://optimistic.etherscan.io/`,
testnet: false,
},
],
[
11155420,
{
id: 11155420,
nativeCurrency: ETH,
type: 'op-sepolia',
fullName: 'Optimism Sepolia',
shortName: 'OP Sepolia',
explorerUrl: `https://optimism-sepolia.blockscout.com/`,
testnet: true,
},
],
[
11155111,
{
Expand Down

0 comments on commit 8b10d2f

Please sign in to comment.