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

Fix all the tests and refac for testing to be possible #154

Open
wants to merge 42 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
e2329d5
push changes for testing abilities
brandonseydel Oct 19, 2022
06018de
all passing woot
brandonseydel Oct 19, 2022
d01c4bb
Merge branch 'development' of https://github.com/Kolektivo/dapp into …
brandonseydel Oct 19, 2022
d9dddb2
fix
brandonseydel Oct 19, 2022
f403111
fix up some more stuff
brandonseydel Oct 19, 2022
56fde62
fix some things
brandonseydel Oct 19, 2022
87f57bf
push changes
brandonseydel Oct 20, 2022
a229cf9
fix for token contract
brandonseydel Oct 20, 2022
a3f5d87
fix
brandonseydel Oct 20, 2022
a668461
push store fix
brandonseydel Oct 20, 2022
2b94592
more fixes
brandonseydel Oct 20, 2022
9eaed2d
more fixes
brandonseydel Oct 20, 2022
f980900
call addListeners on autoConnect
vipergtsrz Oct 20, 2022
841ed74
Get the badges working with account update
vipergtsrz Oct 20, 2022
e626de0
refac
brandonseydel Oct 20, 2022
3d91773
more
brandonseydel Oct 20, 2022
eecff95
refac more
brandonseydel Oct 20, 2022
fc824a0
fix
brandonseydel Oct 20, 2022
5087ba0
make the wallet connect and disconnect on network change
vipergtsrz Oct 20, 2022
e86964d
fix incorrect network
brandonseydel Oct 20, 2022
c67f957
fix wrong newtwork assignment
brandonseydel Oct 20, 2022
4aac9f7
- add a notification to show when coming to the site and your wallet …
vipergtsrz Oct 20, 2022
994ff3a
change encryption service to use the stores
vipergtsrz Oct 20, 2022
7d182ee
dont use services
brandonseydel Oct 20, 2022
ea5d40b
fix issues
brandonseydel Oct 20, 2022
34848dc
update firebase config to the new instance
vipergtsrz Oct 20, 2022
27c5df3
more abstraction
brandonseydel Oct 20, 2022
8d49125
Merge branch 'fix-tests' of https://github.com/Kolektivo/dapp into fi…
brandonseydel Oct 20, 2022
a8a68f1
fix bad merge
vipergtsrz Oct 20, 2022
3d518bb
fix for some aurelia changes
brandonseydel Oct 20, 2022
4a347eb
fix up all the tests and rebuild firebase
brandonseydel Oct 20, 2022
7977dd1
fix cronny
brandonseydel Oct 20, 2022
0c0985a
Merge branch 'development' of https://github.com/Kolektivo/dapp into …
brandonseydel Oct 21, 2022
5a9a55d
abstract firebase service out and remove api key from repo
brandonseydel Oct 21, 2022
1980a6d
remove alert
brandonseydel Oct 21, 2022
0b44806
fix tests
brandonseydel Oct 21, 2022
1f9c4d7
fix lints
brandonseydel Oct 21, 2022
eac40d2
remove all lint warnings
vipergtsrz Oct 21, 2022
94e1e8c
fix the doughnut charts
brandonseydel Oct 21, 2022
e861951
fix couple more things for cleanliness
brandonseydel Oct 21, 2022
04647de
fix the ripple
brandonseydel Oct 21, 2022
1ab9941
Merge branch 'development' into fix-tests
vipergtsrz Oct 21, 2022
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
2 changes: 0 additions & 2 deletions .github/workflows/scheduled-tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ on:
schedule:
# Runs every 5 minutes (see https://crontab.guru)
- cron: '*/5 * * * *'
- cron: '*/10 * * * *'
- cron: '*/15 * * * *'
jobs:
build:
name: Trigger Chart Data Refresh
Expand Down
1,842 changes: 1,066 additions & 776 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"clean": "npx -y rimraf node_modules package-lock.json && npm i",
"dev": "vite",
"start": "vite",
"build": "vite build",
"build": "tsc && vite build",
"build:chart-data-script": "vite build --config vite.config-lib.ts",
"build:dev:chart-data-script": "vite build --config vite.config-lib.ts --mode development",
"build:dev": "vite build --mode development",
Expand Down Expand Up @@ -60,6 +60,7 @@
"@dethcrypto/eth-sdk-client": "^0.1.6",
"@material-design-icons/svg": "^0.12.1",
"@metamask/detect-provider": "^1.2.0",
"@metamask/providers": "^10.0.0",
"@walletconnect/web3-provider": "^1.8.0",
"aurelia": "dev",
"browserify-zlib": "^0.2.0",
Expand Down
Loading