Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 49 additions & 9 deletions src/chains.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const arbitrumGoerli = {
testnet: true,
};

export const arbitrumSepolia ={
export const arbitrumSepolia = {
id: 421614,
name: "Arbitrum Sepolia",
network: "arbitrum-sepolia",
Expand Down Expand Up @@ -2249,10 +2249,14 @@ export const skaleCalypsoTestnet = {
},
rpcUrls: {
default: {
http: ["https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar"],
http: [
"https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar",
],
},
public: {
http: ["https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar"],
http: [
"https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar",
],
},
},
blockExplorers: {
Expand Down Expand Up @@ -2280,10 +2284,14 @@ export const skaleChaosTestnet = {
},
rpcUrls: {
default: {
http: ["https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix"],
http: [
"https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix",
],
},
public: {
http: ["https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix"],
http: [
"https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix",
],
},
},
blockExplorers: {
Expand Down Expand Up @@ -2613,10 +2621,14 @@ export const skaleTitanTestnet = {
},
rpcUrls: {
default: {
http: ["https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar"],
http: [
"https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar",
],
},
public: {
http: ["https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar"],
http: [
"https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar",
],
},
},
blockExplorers: {
Expand Down Expand Up @@ -2860,10 +2872,16 @@ export const wanchain = {
},
rpcUrls: {
default: {
http: ["https://gwan-ssl.wandevs.org:56891", "https://gwan2-ssl.wandevs.org"],
http: [
"https://gwan-ssl.wandevs.org:56891",
"https://gwan2-ssl.wandevs.org",
],
},
public: {
http: ["https://gwan-ssl.wandevs.org:56891", "https://gwan2-ssl.wandevs.org"],
http: [
"https://gwan-ssl.wandevs.org:56891",
"https://gwan2-ssl.wandevs.org",
],
},
},
blockExplorers: {
Expand Down Expand Up @@ -3103,6 +3121,27 @@ export const manta = {
},
},
};
export const morph = {
id: 2810,
name: "Morph Holesky Testnet",
network: "Morph",
nativeCurrency: {
name: "Ether",
symbol: "ETH",
decimals: 18,
},
rpcUrls: {
default: {
http: ["https://rpc-quicknode-holesky.morphl2.io"],
},
},
blockExplorers: {
default: {
name: "Morph Holesky Explorer",
url: "https://explorer-holesky.morphl2.io",
},
},
};

export default {
arbitrum,
Expand Down Expand Up @@ -3203,4 +3242,5 @@ export default {
zkSync,
zkSyncTestnet,
manta,
morph
};