Skip to content

Commit d2cbf1d

Browse files
committed
feat: productionize app
chore: update ibc transfers query return chore: update graphql types chore: update graphql types chore: update graphql types chore: update graphql types chore: update graphql types chore: update viem chore: update graphql types chore: update graphql types chore: add ibc handler abi chore: sdk updates chore: update abis feat: work in progress faucet page feat: add faucet calling function chore: add kysely chore: add kysely chore: add kysely chore: add kysely chore: update deps feat: union transfers query chore: save progress chore: save progress chore: add keplr window types chore: add keplr window types chore: fmt and update dependencies feat: window leap, keplr and ethereum types feat: keplr and leap connect chore: update deps chore: update deps feat: header connect button chore: cleanup fix: tree-shake icons library fix: tree-shake icons library chore: improve transfers page ui chore: update deps chore: evm wallet option chore: cleanup chore: more connect work chore: use keplr's types package feat: init ibc page fix: spelling and typo chore: save progress chore: ibc table progress chore: progress chore: update deps fix: biome progress progress cleanup fmt buidl cleanup cleanup cleanup lorem foo ipsum fafo fafo fafo kk heho heho heho footer remove icon from connect remove icon from connect rm unused files cleanup h h save ha nav prgrs prgrs save urql cmdk cmdkk fix height rm zod rm zod rm zod rm root lockfile handle pagespeed chore: update hash sm fix service-worker prgrs prgrs prgrs prgrs x l g update abi e derives p prgrs prgrs prgrs rm bad node prefix p p prgrs fixed build fix onmount prgrs prrrrr save save p progress fmt prgrs prgrs prgrs prgrs ts-sdk-mod prgrs sdk sdk clean prgrs prgrs cln height choer: update osmosis examples
1 parent 92c4cb2 commit d2cbf1d

File tree

268 files changed

+20875
-72554
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

268 files changed

+20875
-72554
lines changed

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,13 @@ cache
5353
.eslintcache
5454
.prettiercache
5555
.code-workspace
56-
5756
.idea
5857
.biome
59-
6058
.envrc.local
6159
justfile
62-
60+
stats.html
6361
.devnet/
64-
6562
process-compose.yml
6663
process-compose.override.yml
67-
64+
*.cpuprofile
65+
.vite-inspect

app/.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ node_modules
66
.env
77
.env.*
88
!.env.example
9-
vite.config.js.timestamp-*
10-
vite.config.ts.timestamp-*
9+
vite.config.*.timestamp-*
1110
.eslintcache
1211
.prettiercache

app/.npmrc

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
engine-strict=true
2-
registry=https://registry.npmjs.org/
3-
4-
@unionlabs:registry=https://npm.pkg.github.com
5-
//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}
6-
always-auth=true
2+
@jsr:registry=https://npm.jsr.io
3+
@buf:registry=https://buf.build/gen/npm/v1

app/app.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@
22
perSystem = { pkgs, unstablePkgs, lib, ensureAtRepositoryRoot, ... }:
33
let
44
pkgsDeps = with pkgs; [ pkg-config ];
5-
nodeDeps = with unstablePkgs; [ nodejs_21 ];
5+
nodeDeps = with unstablePkgs; [ nodePackages_latest.nodejs ];
66
combinedDeps = pkgsDeps ++ nodeDeps;
77
packageJSON = lib.importJSON ./package.json;
88
in
99
{
1010
packages = {
1111
app = unstablePkgs.buildNpmPackage {
12-
npmDepsHash = "";
12+
npmDepsHash = "sha256-XdJ5sX2F8kUceoAiB8KuSZkm0iOEn81M1qYMxHvOF0A=";
1313
src = ./.;
1414
sourceRoot = "app";
15+
npmFlags = [ "--legacy-peer-deps" ];
1516
pname = packageJSON.name;
1617
version = packageJSON.version;
17-
nativeBuildInputs = combinedDeps ++ [ pkgs.python3 ];
18+
nativeBuildInputs = combinedDeps;
1819
buildInputs = combinedDeps;
1920
installPhase = ''
2021
mkdir -p $out

app/components.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"$schema": "https://shadcn-svelte.com/schema.json",
3-
"style": "new-york",
3+
"style": "default",
44
"tailwind": {
55
"config": "tailwind.config.ts",
6-
"css": "src/styles/index.css",
6+
"css": "src/styles/tailwind.css",
77
"baseColor": "slate"
88
},
99
"aliases": {
10-
"components": "$lib/components",
11-
"utils": "$lib/utilities/shadcn.ts"
10+
"components": "$/lib/components",
11+
"utils": "$lib/utilities/shadcn"
1212
},
1313
"typescript": true
1414
}

app/environment.d.ts

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,22 @@ interface EnvironmentVariables {
33
readonly PORT: string
44
readonly VERSION: string // from package.json#version
55
readonly COMMIT_SHA: string
6+
readonly VITE_APP_VERSION: string
7+
readonly ETHERSCAN_API_KEY: string
68
readonly HASURA_ADMIN_SECRET: string
7-
readonly VITE_UNION_RPC_URL: string
8-
readonly VITE_UNION_REST_URL: string
9-
readonly VITE_UNION_GRAPHQL_URL: string
10-
readonly VITE_UNION_CHAIN_ID: string
11-
readonly VITE_UNION_CHAIN_NAME: string
12-
readonly VITE_UCS01_EVM_ADDRESS: string
13-
readonly VITE_UCS01_UNION_ADDRESS: string
14-
readonly VITE_UCS01_SEPOLIA_PORT_ID: string
15-
readonly VITE_UCS01_UNION_SOURCE_CHANNEL: string
16-
readonly VITE_UCS01_SEPOLIA_SOURCE_CHANNEL: string
9+
// `vite-plugin-inspect`
10+
readonly INSPECT: string
11+
// `rollup-plugin-visualizer`
12+
readonly VISUALIZE: string
1713
}
14+
1815
// Node.js environment variables types
1916
declare namespace NodeJS {
2017
interface ProcessEnv extends EnvironmentVariables {}
2118
}
19+
2220
// Vite environment variables types
2321
interface ImportMetaEnv extends EnvironmentVariables {}
2422
interface ImportMeta {
2523
readonly env: ImportMetaEnv
2624
}
27-
// Cloudflare Pages/Workers
28-
interface Env extends EnvironmentVariables {}

0 commit comments

Comments
 (0)