Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/backoffice-tokenization/.env.example
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Trustless Work API Configuration
NEXT_PUBLIC_API_KEY=""

# API URL
NEXT_PUBLIC_API_URL="http://localhost:3000/api"

# Server-side only (for contract deployment)
SOURCE_SECRET=""
SOURCE_SECRET=""

# Core API URL (NestJS backend)
NEXT_PUBLIC_CORE_API_URL="http://localhost:4000"
Binary file not shown.
Binary file not shown.
Binary file not shown.
117 changes: 0 additions & 117 deletions apps/backoffice-tokenization/src/app/api/deploy/route.ts

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

12 changes: 12 additions & 0 deletions apps/backoffice-tokenization/src/app/flow-roi/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"use client";

import { Suspense } from "react";
import { RoiDashboard } from "@/features/flow-roi/RoiDashboard";

export default function RoiPage() {
return (
<Suspense fallback={null}>
<RoiDashboard />
</Suspense>
);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
"use client";

import { use, Suspense } from "react";
import { EscrowDetail } from "@/features/flow-testing/EscrowDetail";

export default function EscrowDetailPage({
params,
}: {
params: Promise<{ contractId: string }>;
}) {
const { contractId } = use(params);

return (
<Suspense fallback={null}>
<EscrowDetail contractId={contractId} />
</Suspense>
);
}
12 changes: 12 additions & 0 deletions apps/backoffice-tokenization/src/app/flow-testing/create/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"use client";

import { Suspense } from "react";
import { CreateCampaignFlow } from "@/features/flow-testing/CreateCampaignFlow";

export default function CreateCampaignPage() {
return (
<Suspense fallback={null}>
<CreateCampaignFlow />
</Suspense>
);
}
12 changes: 12 additions & 0 deletions apps/backoffice-tokenization/src/app/flow-testing/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"use client";

import { Suspense } from "react";
import { FlowTesting } from "@/features/flow-testing/FlowTesting";

export default function FlowTestingPage() {
return (
<Suspense fallback={null}>
<FlowTesting />
</Suspense>
);
}
Loading