From 954073b29c2cd531954cae57ebc97c127a487f17 Mon Sep 17 00:00:00 2001 From: Timur Badretdinov Date: Thu, 1 May 2025 10:20:34 +0100 Subject: [PATCH 01/10] fix --- nuxt.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 640f61c..15fde6a 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -63,7 +63,7 @@ export default defineNuxtConfig({ }, ], script: [ - { async: true, src: 'https://cdn.metrical.xyz/script.js' }, + { async: true, src: 'https://cdn.metrical.xyz/script.js', type: 'text/javascript' }, { children: 'window.metrical = { "app": "QjX4GqlXkK"}' }, ], }, From 4ef16aa911ce843fcf9e8856823adec497622a07 Mon Sep 17 00:00:00 2001 From: Timur Badretdinov Date: Thu, 1 May 2025 10:23:25 +0100 Subject: [PATCH 02/10] fix --- nuxt.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 15fde6a..c13876c 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -64,7 +64,7 @@ export default defineNuxtConfig({ ], script: [ { async: true, src: 'https://cdn.metrical.xyz/script.js', type: 'text/javascript' }, - { children: 'window.metrical = { "app": "QjX4GqlXkK"}' }, + { innerHTML: 'window.metrical = { "app": "QjX4GqlXkK"}', type: 'text/javascript', body: true }, ], }, }, From 9f376e5b84c93273698a6f7271aaf7319687e6d3 Mon Sep 17 00:00:00 2001 From: Timur Badretdinov Date: Sun, 11 May 2025 08:04:42 +0100 Subject: [PATCH 03/10] chore: add LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..244229e --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From bb425c5999fea221aca9ba92c6acdfc7dd64f61b Mon Sep 17 00:00:00 2001 From: Timur Badretdinov Date: Sun, 11 May 2025 08:11:59 +0100 Subject: [PATCH 04/10] chore: add .env.example --- .env.example | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..1fff490 --- /dev/null +++ b/.env.example @@ -0,0 +1,10 @@ +VITE_QUICKNODE_APP_NAME= +VITE_QUICKNODE_APP_KEY= +VITE_API_ENDPOINT= +VITE_APP_BASE_URL= +VITE_INDEXER_ENDPOINT= +VITE_TENDERLY_NODE_ACCESS_KEY= +ALCHEMY_API_KEY= +POSTHOG_API_KEY= +POSTHOG_API_HOST= +ENVIO_HYPERSYNC_API_KEY= From 327c7fc100a776689e4f97e47a2f8ac70e36f10f Mon Sep 17 00:00:00 2001 From: Timur Badretdinov Date: Sun, 11 May 2025 08:12:11 +0100 Subject: [PATCH 05/10] docs: add README --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..56cd880 --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# Scope UI + +## Development + +Make sure you have the `.env.local` file with the required config. + +To install the dependencies: + +``` +bun i +``` + +To run the server: + +``` +bun run dev +``` + +## Related + +* [Scope API Server](https://github.com/scope-sh/scope-api) +* [Scope Label Registry](https://github.com/scope-sh/scope-registry) From 889a3cdac83efaf46ae9900952bfff94cefcbcd8 Mon Sep 17 00:00:00 2001 From: Timur Badretdinov Date: Sun, 11 May 2025 08:16:48 +0100 Subject: [PATCH 06/10] docs: update README --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 56cd880..df49758 100644 --- a/README.md +++ b/README.md @@ -18,5 +18,6 @@ bun run dev ## Related -* [Scope API Server](https://github.com/scope-sh/scope-api) -* [Scope Label Registry](https://github.com/scope-sh/scope-registry) +* [Scope API](https://github.com/scope-sh/scope-api) +* [Scope Registry](https://github.com/scope-sh/scope-registry) +* [Indexer](https://github.com/scope-sh/hyperindex-erc4337) From 9e231525cc4ba434eb2c5ae5d5b528d59968f50c Mon Sep 17 00:00:00 2001 From: Timur Badretdinov Date: Sun, 11 May 2025 14:45:44 +0100 Subject: [PATCH 07/10] feat: show banner --- app/app.vue | 2 + app/components/_app/BannerSunset.vue | 74 ++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 app/components/_app/BannerSunset.vue diff --git a/app/app.vue b/app/app.vue index 2547f12..72bc9a4 100644 --- a/app/app.vue +++ b/app/app.vue @@ -1,5 +1,6 @@