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= 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. diff --git a/README.md b/README.md new file mode 100644 index 0000000..df49758 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# 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](https://github.com/scope-sh/scope-api) +* [Scope Registry](https://github.com/scope-sh/scope-registry) +* [Indexer](https://github.com/scope-sh/hyperindex-erc4337) 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 @@