This is a Next.js-based dashboard for managing Trustless Work wallet.
- Node.js 18.x or later
- npm, yarn, or pnpm package manager
- A modern web browser
- Clone the repository:
git clone https://github.com/Trustless-Work/Product.git
cd dashboard-tw-wallet
- Install dependencies:
npm install
# or
yarn install
# or
pnpm install
- Configure the constants in
src/lib/constants.ts
:
export const API_BASE_URL = 'https://horizon-testnet.stellar.org';
export const DEFAULT_ACCOUNT_ID = 'GA6KH5VWPCHBOEF63X57SPX6T4H366YFFKKGCVDBTXT2N7JVL6PJCK7G';
export const TRANSACTIONS_PER_PAGE = 10;
Start the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
The dashboard will be available at http://localhost:3000
npm run build
npm start
# or
yarn build
yarn start
# or
pnpm build
pnpm start
- Web3 wallet integration
- Transaction management
- Balance tracking
- Next.js 15
- TypeScript
- Tailwind CSS
[Add contribution guidelines]
[Add license information]