Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jennifer/ten gateway #1685

Merged
merged 43 commits into from
Dec 8, 2023
Merged
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
6d4e56f
wip: Tenscan gateway
Jennievon Nov 20, 2023
f9ccd8e
wip: gateway revamp
Jennievon Nov 21, 2023
dd41b92
refactor: UI and logic
Jennievon Nov 22, 2023
3052191
chore: move constants and account connections
Jennievon Nov 22, 2023
3fca27e
refactor: services and wallet context
Jennievon Nov 22, 2023
b8546fa
styles: update custom font and logo
Jennievon Nov 22, 2023
05e5d2a
Merge branch 'jennifer/new-scan-config-setup' of https://github.com/o…
Jennievon Nov 22, 2023
87b1bdb
remove logs
Jennievon Nov 22, 2023
4fe3e0a
fix: metamask error handling
Jennievon Nov 22, 2023
45cc49d
fix: conection method
Jennievon Nov 22, 2023
8e0f995
fix connect method
Jennievon Nov 24, 2023
52c486d
Merge branch 'main' of https://github.com/ten-protocol/go-ten into je…
Jennievon Nov 24, 2023
2564491
feat: error handling
Jennievon Nov 24, 2023
0e199a0
separate gateway frontend concerns to folder
Jennievon Nov 24, 2023
99ea139
Merge branch 'jennifer/scan-updates' of https://github.com/ten-protoc…
Jennievon Nov 28, 2023
66b045c
feat: authenticate account with EIP712
Jennievon Nov 28, 2023
e22a921
add `README` file
Jennievon Nov 28, 2023
11bfd53
- update css variables and constant urls
Jennievon Nov 28, 2023
284592e
move gateway base to `walletextension/frontend`
Jennievon Nov 28, 2023
15ba247
update readme
Jennievon Nov 29, 2023
1891fac
Merge branch 'main' of https://github.com/ten-protocol/go-ten into je…
Jennievon Nov 29, 2023
e30d285
refactor: account signing and authentication
Jennievon Nov 29, 2023
e8af463
add docs and error pages
Jennievon Nov 29, 2023
d2e5e03
feat: add SEO tags and GTAG
Jennievon Nov 29, 2023
8ace8cc
refactor: separate eth and gateway requests
Jennievon Dec 1, 2023
bd78077
fix: change toast type
Jennievon Dec 5, 2023
5c72f5b
chore: cleanup functions and error msgs
Jennievon Dec 5, 2023
f0a2ca8
fix (dis)connection errors
Jennievon Dec 6, 2023
a9cecd7
Merge branch 'main' of https://github.com/ten-protocol/go-ten into je…
Jennievon Dec 6, 2023
1169109
update toast methods
Jennievon Dec 7, 2023
820ce4e
update meta description
Jennievon Dec 7, 2023
d9c7dd0
add env example file
Jennievon Dec 7, 2023
2286cc1
remove log
Jennievon Dec 8, 2023
75ddb7a
update README to configure env
Jennievon Dec 8, 2023
ca85d2a
fix build error
Jennievon Dec 8, 2023
2e3d33f
move `GOOGLE_ANALYTICS_ID` to env file
Jennievon Dec 8, 2023
da9a1b2
update review suggestions
Jennievon Dec 8, 2023
850ca76
Merge branch 'main' of https://github.com/ten-protocol/go-ten into je…
Jennievon Dec 8, 2023
f23a804
rm redundant click handler
Jennievon Dec 8, 2023
77abb24
fix undefined error
Jennievon Dec 8, 2023
72db024
Merge branch 'main' of https://github.com/ten-protocol/go-ten into je…
Jennievon Dec 8, 2023
f80c751
fix navigator error
Jennievon Dec 8, 2023
50e9c2f
fix build error
Jennievon Dec 8, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const MessageContent = (
);

export const NetworkStatus = ({ message = MessageContent }) => {
const [isOnline, setIsOnline] = React.useState(navigator.onLine);
const [isOnline, setIsOnline] = React.useState(true);

React.useEffect(() => {
const setOnlineStatus = () => {
Expand Down
Loading