Skip to content

Commit

Permalink
Updated RPC URL's
Browse files Browse the repository at this point in the history
  • Loading branch information
SDargarh committed Dec 22, 2023
1 parent 655d485 commit 8e83bfa
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 22 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,8 @@

### 2.0.5 (2023-12-11)

* Build updates
* Build updates

### 2.0.6 (2023-12-22)

* Updated RPC URL's
36 changes: 18 additions & 18 deletions dist/networks.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,35 +12,35 @@ function networkAdapter(network) {
exports.networkAdapter = networkAdapter;
const networks = {
mainnet: {
nodeUrl: "https://mainnet.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://mainnet.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "1",
},
goerlitestnet: {
nodeUrl: "https://goerli.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://goerli.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "420",
},
polygonmainnet: {
nodeUrl: "https://polygon-mainnet.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://polygon-mainnet.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "137",
},
mumbaitestnet: {
nodeUrl: "https://polygon-mumbai.infura.io/v3/814228beb1ff4d5991988329e57c349c",
nodeUrl: "https://polygon-mumbai.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "80001",
},
optimism: {
nodeUrl: "https://polygon-mainnet.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://polygon-mainnet.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "10",
},
optimismtestnet: {
nodeUrl: "https://optimism-goerli.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://optimism-goerli.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "420",
},
arbitrum: {
nodeUrl: "https://arbitrum-mainnet.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://arbitrum-mainnet.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "42161",
},
arbitrumtestnet: {
nodeUrl: "https://arbitrum-goerli.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://arbitrum-goerli.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "421613",
},
velas: {
Expand All @@ -52,7 +52,7 @@ const networks = {
chainId: "111",
},
mantle: {
nodeUrl: "http://rpc.mantle.xyz/",
nodeUrl: "https://rpc.ankr.com/mantle",
chainId: "5000",
},
mantletestnet: {
Expand All @@ -68,35 +68,35 @@ const networks = {
chainId: "97",
},
"1": {
nodeUrl: "https://mainnet.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://mainnet.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "1",
},
"5": {
nodeUrl: "https://goerli.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://goerli.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "5",
},
"137": {
nodeUrl: "https://polygon-mainnet.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://polygon-mainnet.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "137",
},
"80001": {
nodeUrl: "https://polygon-mumbai.infura.io/v3/814228beb1ff4d5991988329e57c349c",
nodeUrl: "https://polygon-mumbai.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "80001",
},
"10": {
nodeUrl: "https://optimism-mainnet.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://optimism-mainnet.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "10",
},
"420": {
nodeUrl: "https://optimism-goerli.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://optimism-goerli.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "420",
},
"42161": {
nodeUrl: "https://arbitrum-mainnet.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://arbitrum-mainnet.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "42161",
},
"421613": {
nodeUrl: "https://arbitrum-goerli.infura.io/v3/8faaf4fcbdcc4dd0bee8c87eb4b0315b",
nodeUrl: "https://arbitrum-goerli.infura.io/v3/eff77f64ebfd4153b083c7867ccf115d",
chainId: "421613",
},
"106": {
Expand All @@ -108,7 +108,7 @@ const networks = {
chainId: "111",
},
"5000": {
nodeUrl: "http://rpc.mantle.xyz/",
nodeUrl: "https://rpc.ankr.com/mantle",
chainId: "5000",
},
"5001": {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@getsafle/safle-keyless-js",
"version": "2.0.5",
"version": "2.0.6",
"description": "",
"main": "dist/index.js",
"scripts": {
Expand Down

0 comments on commit 8e83bfa

Please sign in to comment.