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

Added network switch and small style changes #2

Merged
merged 3 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ jobs:
with:
fetch-depth: 0

- name: Download Build Artifact
uses: actions/download-artifact@v2
- name: Download artifact
uses: dawidd6/action-download-artifact@v3
with:
name: build-artifact # Match the name of the artifact published in the previous workflow
workflow: build.yml
name: build-artifact
path: ./deploy

- name: Set up Node.js
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
*.so
*.dylib

node_modules

build/dist
build/*.exe

Expand Down
4 changes: 3 additions & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@
<link href="/css/vendors/aos.css" rel="stylesheet">
<link href="/style.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Svelte</title>
<meta name="description" content="Request free tSTRAX tokens." />
<title>Stratis Auroria Faucet</title>
</head>
<body class="font-inter antialiased bg-slate-900 text-slate-100 tracking-tight">
<div class="flex flex-col min-h-screen overflow-hidden supports-[overflow:clip]:overflow-clip" id="app"></div>
<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script>
<script src="/js/vendors/alpinejs.min.js" defer></script>
<script src="/js/vendors/aos.js"></script>
<script src="/js/main.js"></script>
Expand Down
2 changes: 2 additions & 0 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^3.0.0",
"svelte": "^4.1.2",
"svelte-web3": "^4.3.1",
"tailwindcss": "^3.4.1",
"vite": "^4.4.9"
},
"dependencies": {
"@ethersproject/address": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@rodneylab/svelte-social-icons": "^0.0.28",
"animate.css": "^4.1.1",
"bulma": "^0.9.4",
"bulma-toast": "^2.4.3"
Expand Down
Loading
Loading