Skip to content

Commit

Permalink
v9.3.6: fix solana RPC
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNe0x1 committed May 16, 2024
1 parent 8ccb5f0 commit 56c88d2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/esm/index.js

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

2 changes: 1 addition & 1 deletion dist/umd/index.js

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,7 +1,7 @@
{
"name": "@depay/web3-blockchains",
"moduleName": "Web3Blockchains",
"version": "9.3.5",
"version": "9.3.6",
"description": "JavaScript library containing aggregated information and abstractions for web3 blockchains.",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/blockchains/solana.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default {
if(address) { return `https://solscan.io/address/${address}` }
},
endpoints: [
'https://solana.drpc.org',
'https://solana.a.exodus.io',
'https://mainnet-beta.solflare.network',
'https://swr.xnftdata.com/rpc-proxy'
],
Expand Down
2 changes: 1 addition & 1 deletion tests/units/blockchains/solana.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('solana', () => {
expect(blockchain.stables.usd).toEqual(['EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v', 'Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB']);
expect(blockchain.explorer).toEqual('https://solscan.io');
expect(blockchain.endpoints).toEqual([
'https://solana.drpc.org',
'https://solana.a.exodus.io',
'https://mainnet-beta.solflare.network',
'https://swr.xnftdata.com/rpc-proxy'
]);
Expand Down

0 comments on commit 56c88d2

Please sign in to comment.