Default to mainnet

This commit is contained in:
Nishad 2020-08-07 18:37:27 +08:00
parent cb32d5ec84
commit e4d8626f6b
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ const ConnectionContext = React.createContext(null);
export function ConnectionProvider({ children }) {
const [endpoint, setEndpoint] = useLocalStorageState(
'endpoint',
clusterApiUrl('devnet'),
clusterApiUrl('mainnet-beta'),
);
const connection = useMemo(() => new Connection(endpoint, 'single'), [