Skip to content

Commit 7815445

Browse files
committed
resolved conflicts
2 parents 028d57f + 0c75283 commit 7815445

199 files changed

Lines changed: 28426 additions & 8912 deletions

File tree

Some content is hidden

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

.env.example

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,32 @@
33
PINATA_API_KEY=your_pinata_api_key_here
44
PINATA_SECRET_API_KEY=your_pinata_secret_api_key_here
55

6+
# Backend API base URL (absolute URL)
7+
# Used by the frontend and Next.js route handlers to proxy /health and /v1/risk.
8+
# Examples:
9+
# NEXT_PUBLIC_API_URL=http://localhost:8080
10+
# NEXT_PUBLIC_API_URL=https://api-staging.example.com
11+
NEXT_PUBLIC_API_URL=
12+
13+
# WebSocket base URL (absolute URL). If unset, derived from NEXT_PUBLIC_API_URL.
14+
# Examples:
15+
# NEXT_PUBLIC_WS_URL=ws://localhost:8081
16+
# NEXT_PUBLIC_WS_URL=wss://api-staging.example.com
17+
NEXT_PUBLIC_WS_URL=
18+
19+
# Optional: CORS allow-list for Next.js route handlers (comma-separated origins)
20+
# If unset, localhost origins are allowed during development.
21+
CORS_ALLOW_ORIGINS=
22+
623
# Sentry DSN for error tracking
724
# Get this from your Sentry project settings
825
NEXT_PUBLIC_SENTRY_DSN=your_sentry_dsn_here
26+
27+
# Soroban / Stellar Smart Contracts
28+
NEXT_PUBLIC_SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
29+
NEXT_PUBLIC_STELLAR_NETWORK_PASSPHRASE=Test SDF Network ; September 2015
30+
NEXT_PUBLIC_INVOICE_CONTRACT_ID=your_deployed_invoice_contract_id_here
31+
32+
# Stellar Network Configuration
33+
# Set to "TESTNET" or "PUBLIC" to specify which network the app should use
34+
NEXT_PUBLIC_STELLAR_NETWORK=TESTNET

.eslintrc.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"extends": [
3+
"next/core-web-vitals",
4+
"plugin:@typescript-eslint/recommended"
5+
],
6+
"plugins": ["@typescript-eslint"],
7+
"rules": {
8+
"@typescript-eslint/no-explicit-any": "off",
9+
"@typescript-eslint/no-unused-vars": ["warn", {
10+
"argsIgnorePattern": "^_",
11+
"varsIgnorePattern": "^_"
12+
}],
13+
"react/no-unescaped-entities": "warn",
14+
"react-hooks/exhaustive-deps": "warn"
15+
}
16+
}

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ dist
1717
npm-debug.log*
1818
yarn-debug.log*
1919
yarn-error.log*
20+
tsconfig.tsbuildinfo
21+
22+
# Agent
23+
AEGNTS.md
24+
25+
# Agent
26+
AEGNTS.md
2027

2128
# IDE
2229
.vscode

.next/cache/config.json

Lines changed: 0 additions & 7 deletions
This file was deleted.
-43.3 KB
Binary file not shown.

.next/package.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

.next/server/app-paths-manifest.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

.next/server/pages-manifest.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

.next/server/server-reference-manifest.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

.next/server/server-reference-manifest.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)