giuseppecrj / fwb-merch-table

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FWB Merch Table

This repository holds the proof-of-concept contracts for a Merch Table for FWB DAO

Structure

The contracts are structured as followed:

Participants

  • buyer
  • seller / store
  • arbiter

Contracts

MerchTable.sol - In charge of adding products to catalog and settling escrow arbitration once product is delivered.

Receipt.sol - NFT gets sent to the buyer as proof of purchase, this will hold both the productId and any metadata we push to IPFS

Escrow.sol - This contract gets created internally when a buyer purchases from a seller. The ETH goes into this escrow contract until 2 of the 3 participants agree to either release or refund the amount once the transaction is settled.

TODO

  • Allow for ERC20 Payments
  • Shipping capabilities off-chain

Installation

  git clone https://github.com/giuseppecrj/fwb-merch-table.git
  cd fwb-merch-table
  forge install

Usage

Here's a list of the most frequently needed commands.

Build

Build the contracts:

$ forge build

Clean

Delete the build artifacts and cache directories:

$ forge clean

Compile

Compile the contracts:

$ forge build

Test

Test the contracts:

$ forge test

Deploy

Deploy to Anvil:

$ make deploy-anvil contract=MerchTable

About


Languages

Language:Solidity 93.8%Language:Makefile 3.5%Language:Shell 1.5%Language:JavaScript 1.3%