Skip to content

Commit

Permalink
v9.7.5: fix solana rpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNe0x1 committed Nov 8, 2024
1 parent 779a076 commit 00f90f0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions dist/esm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,9 @@ var solana = {
if(address) { return `https://solscan.io/address/${address}` }
},
endpoints: [
'https://swr.xnftdata.com/rpc-proxy',
'https://solana-mainnet.g.alchemy.com/v2/demo',
'https://solana-rpc.publicnode.com',
'https://endpoints.omniatech.io/v1/sol/mainnet/public'
'https://endpoints.omniatech.io/v1/sol/mainnet/public',
],
sockets: [
'wss://solana.drpc.org',
Expand Down
4 changes: 2 additions & 2 deletions dist/umd/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,9 @@
if(address) { return `https://solscan.io/address/${address}` }
},
endpoints: [
'https://swr.xnftdata.com/rpc-proxy',
'https://solana-mainnet.g.alchemy.com/v2/demo',
'https://solana-rpc.publicnode.com',
'https://endpoints.omniatech.io/v1/sol/mainnet/public'
'https://endpoints.omniatech.io/v1/sol/mainnet/public',
],
sockets: [
'wss://solana.drpc.org',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@depay/web3-blockchains",
"moduleName": "Web3Blockchains",
"version": "9.7.4",
"version": "9.7.5",
"description": "JavaScript library containing aggregated information and abstractions for web3 blockchains.",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/blockchains/solana.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ export default {
if(address) { return `https://solscan.io/address/${address}` }
},
endpoints: [
'https://swr.xnftdata.com/rpc-proxy',
'https://solana-mainnet.g.alchemy.com/v2/demo',
'https://solana-rpc.publicnode.com',
'https://endpoints.omniatech.io/v1/sol/mainnet/public'
'https://endpoints.omniatech.io/v1/sol/mainnet/public',
],
sockets: [
'wss://solana.drpc.org',
Expand Down

0 comments on commit 00f90f0

Please sign in to comment.