Skip to content

Commit

Permalink
Add support for mainnet πm^x
Browse files Browse the repository at this point in the history
  • Loading branch information
pyropy committed Mar 14, 2023
1 parent 1d0ccb8 commit fdc0d13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/filters/defaultNetwork.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { Network } from "@/enums/Network";

export const defaultNetwork = () => Network.HyperSpace;
export const defaultNetwork = () => Network.Mainnet;
2 changes: 1 addition & 1 deletion src/ui/modules/Filters/state/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const AVAILABLE_FILTERS = [
Entity.Transaction,
];

export const AVAILABLE_NETWORKS = [Network.HyperSpace];
export const AVAILABLE_NETWORKS = [Network.Mainnet, Network.HyperSpace];

export const availableFilters = AVAILABLE_FILTERS.map((value) => ({
value,
Expand Down

0 comments on commit fdc0d13

Please sign in to comment.