Skip to content

Commit

Permalink
feat: productionize app
Browse files Browse the repository at this point in the history
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
  • Loading branch information
o-az committed May 1, 2024
1 parent 92c4cb2 commit d2cbf1d
Show file tree
Hide file tree
Showing 268 changed files with 20,875 additions and 72,554 deletions.
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,13 @@ cache
.eslintcache
.prettiercache
.code-workspace

.idea
.biome

.envrc.local
justfile

stats.html
.devnet/

process-compose.yml
process-compose.override.yml

*.cpuprofile
.vite-inspect
3 changes: 1 addition & 2 deletions app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ node_modules
.env
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
vite.config.*.timestamp-*
.eslintcache
.prettiercache
7 changes: 2 additions & 5 deletions app/.npmrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
engine-strict=true
registry=https://registry.npmjs.org/

@unionlabs:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}
always-auth=true
@jsr:registry=https://npm.jsr.io
@buf:registry=https://buf.build/gen/npm/v1
7 changes: 4 additions & 3 deletions app/app.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@
perSystem = { pkgs, unstablePkgs, lib, ensureAtRepositoryRoot, ... }:
let
pkgsDeps = with pkgs; [ pkg-config ];
nodeDeps = with unstablePkgs; [ nodejs_21 ];
nodeDeps = with unstablePkgs; [ nodePackages_latest.nodejs ];
combinedDeps = pkgsDeps ++ nodeDeps;
packageJSON = lib.importJSON ./package.json;
in
{
packages = {
app = unstablePkgs.buildNpmPackage {
npmDepsHash = "";
npmDepsHash = "sha256-XdJ5sX2F8kUceoAiB8KuSZkm0iOEn81M1qYMxHvOF0A=";
src = ./.;
sourceRoot = "app";
npmFlags = [ "--legacy-peer-deps" ];
pname = packageJSON.name;
version = packageJSON.version;
nativeBuildInputs = combinedDeps ++ [ pkgs.python3 ];
nativeBuildInputs = combinedDeps;
buildInputs = combinedDeps;
installPhase = ''
mkdir -p $out
Expand Down
8 changes: 4 additions & 4 deletions app/components.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"$schema": "https://shadcn-svelte.com/schema.json",
"style": "new-york",
"style": "default",
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/styles/index.css",
"css": "src/styles/tailwind.css",
"baseColor": "slate"
},
"aliases": {
"components": "$lib/components",
"utils": "$lib/utilities/shadcn.ts"
"components": "$/lib/components",
"utils": "$lib/utilities/shadcn"
},
"typescript": true
}
20 changes: 8 additions & 12 deletions app/environment.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,22 @@ interface EnvironmentVariables {
readonly PORT: string
readonly VERSION: string // from package.json#version
readonly COMMIT_SHA: string
readonly VITE_APP_VERSION: string
readonly ETHERSCAN_API_KEY: string
readonly HASURA_ADMIN_SECRET: string
readonly VITE_UNION_RPC_URL: string
readonly VITE_UNION_REST_URL: string
readonly VITE_UNION_GRAPHQL_URL: string
readonly VITE_UNION_CHAIN_ID: string
readonly VITE_UNION_CHAIN_NAME: string
readonly VITE_UCS01_EVM_ADDRESS: string
readonly VITE_UCS01_UNION_ADDRESS: string
readonly VITE_UCS01_SEPOLIA_PORT_ID: string
readonly VITE_UCS01_UNION_SOURCE_CHANNEL: string
readonly VITE_UCS01_SEPOLIA_SOURCE_CHANNEL: string
// `vite-plugin-inspect`
readonly INSPECT: string
// `rollup-plugin-visualizer`
readonly VISUALIZE: string
}

// Node.js environment variables types
declare namespace NodeJS {
interface ProcessEnv extends EnvironmentVariables {}
}

// Vite environment variables types
interface ImportMetaEnv extends EnvironmentVariables {}
interface ImportMeta {
readonly env: ImportMetaEnv
}
// Cloudflare Pages/Workers
interface Env extends EnvironmentVariables {}
Loading

0 comments on commit d2cbf1d

Please sign in to comment.