21 lines
488 B
TypeScript
21 lines
488 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']
|
|
}
|
|
}
|
|
});
|
|
|
|
export const usdtAddress = '0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512';
|
|
export const paxgAddress = '0x5FbDB2315678afecb367f032d93F642f64180aa3';
|
|
export const nmkdAddress = '0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0';
|