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.
28 lines
615 B
28 lines
615 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const jocMainnet = /*#__PURE__*/ defineChain({
|
|
id: 81,
|
|
name: 'Japan Open Chain Mainnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Japan Open Chain Token',
|
|
symbol: 'JOC',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: [
|
|
'https://rpc-1.japanopenchain.org:8545',
|
|
'https://rpc-2.japanopenchain.org:8545',
|
|
'https://rpc-3.japanopenchain.org',
|
|
],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Block Explorer',
|
|
url: 'https://explorer.japanopenchain.org',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|