Skip to content

iota-community/on-chain-live-concerts-ticketing-system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

On-Chain-Live-Concerts-Ticketing-System

This README provides a step-by-step guide to setting up and working with an IOTA Move package for on chain live concerts ticketing system.

Prerequisites

  • Ensure you have the IOTA Move CLI installed.
  • Familiarity with Move language and IOTA dApp concepts is helpful.

Setup Instructions

1. Create a New Package

Run the following command to create a new IOTA Move package:

iota move new live_concert

This will generate the following structure:

  • sources/: Folder to store your module files.
  • tests/: Folder to store your test files.
  • Move.toml: Configuration file for the package.

2. Write the live_concert Module

Navigate to the sources folder and create a new file named live_concert.move:

cd live_concert/sources
touch live_concert.move

Write your module code in live_concert.move.

3. Write Tests for the Module

Navigate to the tests folder and write the test cases for your module:

cd ../tests
touch live_concert_tests.move

Add appropriate tests to validate your module's functionality.

Build and Test the Package

Build the Package

Run the following command to build the package:

iota move build

Test the Package

Execute the test cases by running:

iota move test

Publish the Package

Once your package is ready, publish it to the IOTA client:

iota client publish

For Live Concert Ticketing System frontend, refer to the dedicated README file in the frontend folder.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published