File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 77} from '../../utils/storage' ;
88
99export default function Options ( ) : ReactElement {
10- const [ notary , setNotary ] = useState ( 'https://localhost:7047 ' ) ;
11- const [ proxy , setProxy ] = useState ( 'ws ://127.0.0.1:55688 ' ) ;
10+ const [ notary , setNotary ] = useState ( 'https://notary.pse.dev ' ) ;
11+ const [ proxy , setProxy ] = useState ( 'wss ://notary.pse.dev/proxy ' ) ;
1212 const [ dirty , setDirty ] = useState ( false ) ;
1313
1414 useEffect ( ( ) => {
Original file line number Diff line number Diff line change @@ -40,8 +40,11 @@ export const setRequests = (requests: RequestLog[]): Action<RequestLog[]> => ({
4040} ) ;
4141
4242export const notarizeRequest = ( options : RequestHistory ) => async ( ) => {
43- const notaryUrl = await get ( NOTARY_API_LS_KEY , 'https://127.0.0.1:7047' ) ;
44- const websocketProxyUrl = await get ( PROXY_API_LS_KEY , 'ws://127.0.0.1:55688' ) ;
43+ const notaryUrl = await get ( NOTARY_API_LS_KEY , 'https://notary.pse.dev' ) ;
44+ const websocketProxyUrl = await get (
45+ PROXY_API_LS_KEY ,
46+ 'wss://notary.pse.dev/proxy' ,
47+ ) ;
4548
4649 chrome . runtime . sendMessage < any , string > ( {
4750 type : BackgroundActiontype . prove_request_start ,
You can’t perform that action at this time.
0 commit comments