Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arcmichael/decentralizedtradedesk
The graduation project aims to create a decentralized desktop trading platform using blockchain technology for a secure, transparent, and efficient trading environment.
https://github.com/arcmichael/decentralizedtradedesk
Last synced: about 1 month ago
JSON representation
The graduation project aims to create a decentralized desktop trading platform using blockchain technology for a secure, transparent, and efficient trading environment.
- Host: GitHub
- URL: https://github.com/arcmichael/decentralizedtradedesk
- Owner: ArcMichael
- License: bsd-2-clause
- Created: 2024-06-17T01:31:02.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-09T06:51:39.000Z (about 2 months ago)
- Last Synced: 2024-11-09T07:32:43.126Z (about 2 months ago)
- Language: TypeScript
- Size: 2.61 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Tauri + React + Typescript
This template should help get you started developing with Tauri, React and Typescript in Vite.
## Recommended IDE Setup
---- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
### How to output a tree diagram with module of tree
1. Install tree-cli globally using pnpm:
```shell
pnpm install -g tree-cli
```
2. Output a tree diagram up to 3 levels deep, ignoring node_modules:
```shell
npm run tree
or
npx tree -l 3 -o output.txt --ignore node_modules/
```
3. This will generate a file named output.txt with the tree diagram of your project structure.
---### Compile and Migrate Smart Contracts
#### Compile Contracts```shell
npm run truffle-compile
```
#### Migrate Contracts```shell
npm run truffle-migrate
```
#### If you still face issues, consider the following:
1. Delete the build directory and recompile:
```shell
rm -rf build
npm run truffle-compile
```
2. Check your Truffle configuration file (truffle-config.ts) for any misconfigurations.