Files
lab6/hardhat/chains/next.ts
2026-03-26 16:17:30 +01:00

17 lines
268 B
TypeScript

import { defineChain } from 'viem';
export const nextChain = defineChain({
id: 1337,
name: 'Next',
nativeCurrency: {
name: 'Ether',
symbol: 'ETH',
decimals: 18
},
rpcUrls: {
default: {
http: ['https://eth.code-camp.org']
}
}
});