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

Alert on wrong network #93

Closed
wants to merge 32 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
58bf9fc
fetch allowance
alexisnsns Dec 18, 2023
8647b26
remove manual abi
alexisnsns Dec 18, 2023
3a20baf
working demo
alexisnsns Dec 19, 2023
5bfc02f
refacto
alexisnsns Dec 19, 2023
b195ec9
create stream on step 2
alexisnsns Dec 19, 2023
044cb23
allowance on update component
alexisnsns Dec 19, 2023
acd394d
add productname props
alexisnsns Dec 20, 2023
3117e3f
change order
alexisnsns Dec 21, 2023
be8f92c
change build order
alexisnsns Dec 21, 2023
e838dd0
redo normal order
alexisnsns Dec 21, 2023
b486935
clean command
alexisnsns Dec 21, 2023
d9a7007
Merge branch 'allowance' of github.com:ApeWorX/ApePay into allowance
alexisnsns Dec 21, 2023
9f83cf8
remove cart
alexisnsns Dec 21, 2023
1b1bce1
prettify
alexisnsns Jan 17, 2024
168a9a8
palette logic
alexisnsns Jan 18, 2024
99e1c70
style header
alexisnsns Jan 18, 2024
152bfcc
move widget to header
alexisnsns Jan 18, 2024
52030e7
tokyonight pages
alexisnsns Jan 19, 2024
b4d9b63
add themed rainbowkit
alexisnsns Jan 23, 2024
66f8c58
make nav buttons in header optional
alexisnsns Jan 23, 2024
39e9530
style streamstatus
alexisnsns Jan 25, 2024
461ddba
pursue tokyonight theming
alexisnsns Jan 25, 2024
2536eac
custom popover
alexisnsns Jan 25, 2024
5530cfa
change dropdown
alexisnsns Jan 29, 2024
08167a5
fix conflicts
alexisnsns Jan 29, 2024
a1ba8c0
style createstream
alexisnsns Jan 29, 2024
ddbeda6
style streamcreate
alexisnsns Jan 29, 2024
69f9dfe
style sakura
alexisnsns Jan 29, 2024
4f9d07b
setup nord theme
alexisnsns Jan 30, 2024
bd2ce9d
prettify
alexisnsns Feb 2, 2024
b626deb
wrong network
alexisnsns Feb 7, 2024
e758811
manage re-renders on chain change
alexisnsns Feb 14, 2024
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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ In order to work on the Demo app, you need to compile the JS SDK (like above) as
$ npm run build --workspace=ui/lib
```

If you already had a build, you may need to run this command to be able to build the workspaces:

```sh
$ npm run clean
```

Then you are ready to contribute!

To run the demo app in development mode, do the following:
Expand Down
197 changes: 197 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"scripts": {
"format": "prettier -w ui && prettier -w sdk",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"clean": "rm -rf js-dist",
"clean": "find . -name 'dist' -type d -exec rm -rf {} +",
"build": "bash build-script.sh"
},
"engines": {
Expand All @@ -31,6 +31,7 @@
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"evergreen-ui": "^7.1.9",
"express": "^4.18.2",
"prettier": "^3.0.1",
"react-router-dom": "^6.18.0",
Expand Down
10 changes: 10 additions & 0 deletions ui/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="./public/favicon.ico" />
<title>ApePay</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&family=Tomorrow:wght@300&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Jost&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
Expand Down
Loading
Loading