Skip to content

Commit

Permalink
Merge pull request #2302 from solana-labs:agrippa/remove-tokens-oops
Browse files Browse the repository at this point in the history
remove triton token
  • Loading branch information
asktree committed May 14, 2024
2 parents 2914a8b + 3031dd1 commit 769406e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion constants/endpoints.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const MAINNET_RPC =
process.env.NEXT_PUBLIC_MAINNET_RPC ||
process.env.MAINNET_RPC ||
'http://realms-realms-c335.mainnet.rpcpool.com/258d3727-bb96-409d-abea-0b1b4c48af29/'
'http://realms-realms-c335.mainnet.rpcpool.com'

export const DEVNET_RPC =
process.env.NEXT_PUBLIC_DEVNET_RPC ||
Expand Down
3 changes: 1 addition & 2 deletions hub/providers/Cluster/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ import { createContext, useEffect, useState } from 'react';
const DEVNET_RPC_ENDPOINT =
process.env.DEVNET_RPC || 'https://api.dao.devnet.solana.com/';
const MAINNET_RPC_ENDPOINT =
process.env.MAINNET_RPC ||
'http://realms-realms-c335.mainnet.rpcpool.com/258d3727-bb96-409d-abea-0b1b4c48af29/';
process.env.MAINNET_RPC || 'http://realms-realms-c335.mainnet.rpcpool.com';
const TESTNET_RPC_ENDPOINT = 'http://127.0.0.1:8899';

export enum ClusterType {
Expand Down

0 comments on commit 769406e

Please sign in to comment.