Skip to content

Commit

Permalink
Merge pull request #648 from liquality/fix/update-solana-endpoints
Browse files Browse the repository at this point in the history
fix: updated nft providers calls
  • Loading branch information
bradleySuira committed Apr 21, 2023
2 parents e45b959 + 1cc06d1 commit b836198
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/five-months-sell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@chainify/solana': minor
---

Update solana endpoints
4 changes: 2 additions & 2 deletions packages/solana/lib/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import { Network } from '@chainify/types';
const solana_mainnet: Network = {
name: 'Solana Mainnet',
networkId: 'mainnet',
rpcUrl: 'https://solana--mainnet.datahub.figment.io/apikey/d7d9844ccf72ad4fef9bc5caaa957a50',
rpcUrl: 'https://api.mainnet-beta.solana.com',
coinType: '501',
isTestnet: false,
};

const solana_testnet: Network = {
name: 'Solana Testnet',
networkId: 'testnet',
rpcUrl: 'https://solana--devnet.datahub.figment.io/apikey/d7d9844ccf72ad4fef9bc5caaa957a50',
rpcUrl: 'https://api.devnet.solana.com',
coinType: '501',
isTestnet: true,
};
Expand Down

0 comments on commit b836198

Please sign in to comment.