Skip to content

Commit

Permalink
deploy evm support
Browse files Browse the repository at this point in the history
  • Loading branch information
thal0x committed Nov 10, 2023
2 parents 324a5c8 + 55fc16d commit 7399cda
Show file tree
Hide file tree
Showing 84 changed files with 9,160 additions and 2,465 deletions.
5 changes: 5 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# production api
NEXT_PUBLIC_API_URL=https://api.skip.money

# development API
# NEXT_PUBLIC_API_URL=https://solve-dev.skip.money
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"next/core-web-vitals",
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
"prettier",
"plugin:@tanstack/eslint-plugin-query/recommended"
],
"plugins": ["@typescript-eslint", "prettier", "simple-import-sort"],
"parser": "@typescript-eslint/parser",
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true

- name: Use Node 18.x
uses: actions/setup-node@v3
Expand All @@ -28,7 +30,11 @@ jobs:
container:
image: mcr.microsoft.com/playwright:v1.38.0-jammy
steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- run: git config --system --add safe.directory /__w/ibc-dot-fun/ibc-dot-fun
- uses: actions/setup-node@v3
with:
node-version: 18
Expand Down
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

.env*
!.env.example

src/chains/
tests/downloads/

# dependencies
Expand Down Expand Up @@ -38,3 +42,6 @@ next-env.d.ts
/test-results/
/playwright-report/
/playwright/.cache/

# Sentry Config File
.sentryclirc
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "chain-registry"]
path = chain-registry
url = https://github.com/cosmos/chain-registry.git
1 change: 1 addition & 0 deletions chain-registry
Submodule chain-registry added at 5d78ff
5 changes: 5 additions & 0 deletions env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
declare namespace NodeJS {
interface ProcessEnv {
readonly NEXT_PUBLIC_API_URL?: string;
}
}
5 changes: 0 additions & 5 deletions example.env

This file was deleted.

Loading

1 comment on commit 7399cda

@vercel
Copy link

@vercel vercel bot commented on 7399cda Nov 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.