17 lines
268 B
TypeScript
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']
|
|
}
|
|
}
|
|
});
|