Skip to content

Commit

Permalink
Clean up RPC endpoints (#1161)
Browse files Browse the repository at this point in the history
  • Loading branch information
danenbm authored Oct 31, 2023
1 parent 927d062 commit d49ff0a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion auction-house/cli/src/helpers/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ type Cluster = {
export const CLUSTERS: Cluster[] = [
{
name: 'mainnet-beta',
url: 'https://api.metaplex.solana.com/',
url: 'https://api.mainnet-beta.solana.com',
},
{
name: 'testnet',
Expand Down
4 changes: 2 additions & 2 deletions auction-house/cli/src/helpers/upload/arweave-bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ export async function* makeArweaveBundleUploadGenerator(
walletKeyPair.secretKey,
{
timeout: 60000,
providerUrl: rpcUrl ?? 'https://api.metaplex.solana.com',
providerUrl: rpcUrl ?? 'https://api.mainnet-beta.solana.com',
},
)
: new Bundlr(
Expand All @@ -510,7 +510,7 @@ export async function* makeArweaveBundleUploadGenerator(
walletKeyPair.secretKey,
{
timeout: 60000,
providerUrl: 'https://metaplex.devnet.rpcpool.com',
providerUrl: 'https://api.devnet.solana.com',
},
)
: undefined;
Expand Down
4 changes: 2 additions & 2 deletions candy-machine/program/tests/initialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async fn bot_tax_on_gatekeeper_expire_token() {
let gatekeeper_network = Keypair::new();
let gatekeeper_authority = Keypair::new();

let client = RpcClient::new("https://metaplex.devnet.rpcpool.com".to_string());
let client = RpcClient::new("https://api.devnet.solana.com".to_string());

let gateway_account_pubkey = GATEWAY_ACCOUNT_PUBKEY;
let gateway_executable_pubkey =
Expand Down Expand Up @@ -240,7 +240,7 @@ async fn bot_tax_on_gatekeeper() {
let gatekeeper_network = Keypair::new();
let gatekeeper_authority = Keypair::new();

let client = RpcClient::new("https://metaplex.devnet.rpcpool.com".to_string());
let client = RpcClient::new("https://api.devnet.solana.com".to_string());

let gateway_account_pubkey = GATEWAY_ACCOUNT_PUBKEY;
let gateway_executable_pubkey =
Expand Down

0 comments on commit d49ff0a

Please sign in to comment.