You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
446 B
17 lines
446 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
import { chainConfig } from '../../zksync/chainConfig.js'
|
|
|
|
export const zksyncInMemoryNode = /*#__PURE__*/ defineChain({
|
|
...chainConfig,
|
|
id: 260,
|
|
name: 'ZKsync InMemory Node',
|
|
network: 'zksync-in-memory-node',
|
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['http://localhost:8011'],
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|