Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jtlicardo/eth-task-marketplace
Decentralized Ethereum marketplace for creating and completing tasks with ETH rewards
https://github.com/jtlicardo/eth-task-marketplace
ethereum smart-contract solidity vue
Last synced: 5 days ago
JSON representation
Decentralized Ethereum marketplace for creating and completing tasks with ETH rewards
- Host: GitHub
- URL: https://github.com/jtlicardo/eth-task-marketplace
- Owner: jtlicardo
- Created: 2024-08-26T13:02:31.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-28T19:13:56.000Z (4 months ago)
- Last Synced: 2024-11-02T14:42:04.193Z (about 2 months ago)
- Topics: ethereum, smart-contract, solidity, vue
- Language: Vue
- Homepage:
- Size: 604 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ETH Task Marketplace
ETH Task Marketplace is a decentralized application (dApp) built on Ethereum that allows users to create, accept, and manage tasks with cryptocurrency rewards. The platform also includes a dispute resolution system with arbitrators.
Project for the [Blockchain applications](https://fipu.unipu.hr/fipu/en/course/bcinf) course (2023./2024.)
[**Faculty of Informatics**](https://fipu.unipu.hr/)
[**Juraj Dobrila University of Pula**](https://www.unipu.hr/)## Features
- Create tasks with ETH rewards
- Accept tasks and earn rewards
- Complete tasks and release payments
- Raise disputes for task completion
- Become an arbitrator and vote on disputes
- MetaMask integration for Ethereum transactions## Screenshots
![image](./screenshots/5.png)
![image](./screenshots/1.png)
![image](./screenshots/2.png)
![image](./screenshots/3.png)
![image](./screenshots/4.png)
## Tech stack
- Vue.js 3
- Vuetify 3
- web3.js
- Solidity
- Truffle (for smart contract development and deployment)## Setup and installation
1. Clone the repository:
```
git clone https://github.com/jtlicardo/eth-task-marketplace.git
```
```
cd eth-task-marketplace
```2. Install dependencies:
```
npm install
```3. Set up environment variables:
Create a `.env` file in the root directory of the project and add the following:
```
VITE_APP_CONTRACT_ADDRESS=your_contract_address_here
```Replace `your_contract_address_here` with the actual address of your deployed contract.
4. Start the development server:
```
npm run dev
```5. Open your browser and navigate to `http://localhost:3000`
## Smart contract deployment
1. Install Truffle globally:
```
npm install -g truffle
```2. Navigate to the Truffle project directory:
```
cd src/truffle
```3. Compile the smart contracts:
```
truffle compile
```4. Deploy the smart contracts to your chosen network:
```
truffle migrate --network
```