viem
Version:
34 lines (31 loc) • 732 B
text/typescript
import { chainConfig } from '../../op-stack/chainConfig.js'
import { defineChain } from '../../utils/chain/defineChain.js'
const sourceId = 1 // mainnet
export const blast = /*#__PURE__*/ defineChain({
...chainConfig,
id: 81457,
name: 'Blast',
nativeCurrency: {
decimals: 18,
name: 'Ether',
symbol: 'ETH',
},
rpcUrls: {
default: { http: ['https://rpc.blast.io'] },
},
blockExplorers: {
default: {
name: 'Blastscan',
url: 'https://blastscan.io',
apiUrl: 'https://api.blastscan.io/api',
},
},
contracts: {
...chainConfig.contracts,
multicall3: {
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
blockCreated: 212929,
},
},
sourceId,
})