Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add NFT Event Ticketing System #3509

Open
wants to merge 30 commits into
base: master
Choose a base branch
from

Conversation

JJOptimist
Copy link
Contributor

@JJOptimist JJOptimist commented Jan 14, 2025

This PR adds a NFT-based event ticketing system.
Screenshot 2025-01-13 205140

  • Create events with configurable parameters (name, description, date, max tickets, price)
  • Purchase tickets using GNOT
  • Tickets are minted as NFTs using GRC721
  • View all events and ticket availability through web interface

Dependencies:

  • gno.land/p/demo/avl
  • gno.land/p/demo/grc/grc721
  • gno.land/p/demo/ufmt

The system demonstrates:

  • Using AVL trees for state management
  • Integration with GRC721 for NFT functionality
  • Handling GNOT payments
  • Web rendering with markdown formatting

@github-actions github-actions bot added the 🧾 package/realm Tag used for new Realms or Packages. label Jan 14, 2025
@Gno2D2
Copy link
Collaborator

Gno2D2 commented Jan 14, 2025

🛠 PR Checks Summary

All Automated Checks passed. ✅

Manual Checks (for Reviewers):
  • IGNORE the bot requirements for this PR (force green CI check)
  • The pull request description provides enough details (checked by @thehowl)
Read More

🤖 This bot helps streamline PR reviews by verifying automated checks and providing guidance for contributors and reviewers.

✅ Automated Checks (for Contributors):

🟢 Maintainers must be able to edit this pull request (more info)
🟢 Pending initial approval by a review team member, or review from tech-staff

☑️ Contributor Actions:
  1. Fix any issues flagged by automated checks.
  2. Follow the Contributor Checklist to ensure your PR is ready for review.
    • Add new tests, or document why they are unnecessary.
    • Provide clear examples/screenshots, if necessary.
    • Update documentation, if required.
    • Ensure no breaking changes, or include BREAKING CHANGE notes.
    • Link related issues/PRs, where applicable.
☑️ Reviewer Actions:
  1. Complete manual checks for the PR, including the guidelines and additional checks if applicable.
📚 Resources:
Debug
Automated Checks
Maintainers must be able to edit this pull request (more info)

If

🟢 Condition met
└── 🟢 And
    ├── 🟢 The base branch matches this pattern: ^master$
    └── 🟢 The pull request was created from a fork (head branch repo: JJOptimist/gno)

Then

🟢 Requirement satisfied
└── 🟢 Maintainer can modify this pull request

Pending initial approval by a review team member, or review from tech-staff

If

🟢 Condition met
└── 🟢 And
    ├── 🟢 The base branch matches this pattern: ^master$
    └── 🟢 Not (🔴 Pull request author is a member of the team: tech-staff)

Then

🟢 Requirement satisfied
└── 🟢 If
    ├── 🟢 Condition
    │   └── 🟢 Or
    │       ├── 🟢 At least 1 user(s) of the organization reviewed the pull request (with state "APPROVED")
    │       ├── 🔴 At least 1 user(s) of the team tech-staff reviewed pull request
    │       └── 🔴 This pull request is a draft
    └── 🟢 Then
        └── 🟢 Not (🔴 This label is applied to pull request: review/triage-pending)

Manual Checks
**IGNORE** the bot requirements for this PR (force green CI check)

If

🟢 Condition met
└── 🟢 On every pull request

Can be checked by

  • Any user with comment edit permission
The pull request description provides enough details

If

🟢 Condition met
└── 🟢 And
    ├── 🟢 Not (🔴 Pull request author is a member of the team: core-contributors)
    └── 🟢 Not (🔴 Pull request author is user: dependabot[bot])

Can be checked by

  • team core-contributors

@leohhhn
Copy link
Contributor

leohhhn commented Jan 14, 2025

Hey, check out this issue, it might be interesting: #3482

This is something that is will be a priority for the Gno team and you might be able to help.

@leohhhn
Copy link
Contributor

leohhhn commented Jan 14, 2025

Also, seems you also added your home realm in this PR, which I assume was a mistake.

Please check the CI and see why it's failing :)

@JJOptimist
Copy link
Contributor Author

Also, seems you also added your home realm in this PR, which I assume was a mistake.

Please check the CI and see why it's failing :)

(Tried to sneak it in) Yes beginner's mistake, the branch I created already contained my home and I forgot to remove it from the cache before pushing. Ill check the reason why its failing now

@JJOptimist
Copy link
Contributor Author

Hey, check out this issue, it might be interesting: #3482

This is something that is will be a priority for the Gno team and you might be able to help.

Thanks for pointing it , I'll look into in

@JJOptimist
Copy link
Contributor Author

  • Updated NFT ownership check to properly handle errors
  • Added grc721 import for proper TokenID handling

@leohhhn
Copy link
Contributor

leohhhn commented Jan 14, 2025

Check the CI jobs and their outputs; they'll tell you why they're red

@notJoon notJoon added the review/triage-pending PRs opened by external contributors that are waiting for the 1st review label Jan 15, 2025
@Kouteki Kouteki requested a review from leohhhn January 17, 2025 12:10
@github-actions github-actions bot added 📦 🤖 gnovm Issues or PRs gnovm related 📦 🌐 tendermint v2 Issues or PRs tm2 related labels Jan 21, 2025
@michelleellen michelleellen requested a review from n2p5 January 22, 2025 12:02
Copy link

codecov bot commented Jan 22, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

📢 Thoughts on this report? Let us know!

n2p5
n2p5 previously requested changes Jan 23, 2025
Copy link
Contributor

@n2p5 n2p5 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you remove the whitespace formatting changes from this PR in gnovm/* ? They are a bit distracting from the realm code for this review.

@Gno2D2 Gno2D2 requested a review from a team January 25, 2025 20:26
@Gno2D2 Gno2D2 removed the review/triage-pending PRs opened by external contributors that are waiting for the 1st review label Jan 25, 2025
@JJOptimist
Copy link
Contributor Author

Could you remove the whitespace formatting changes from this PR in gnovm/* ? They are a bit distracting from the realm code for this review.

Sorry for unnecessary mess, I ran accidentally tidy and fmt on whole repo instead of my folder

Copy link
Contributor

@leohhhn leohhhn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, this looks cool, but there are some things that should be changed/improved. Please take a look at the comments 🙏

}

func CreateEvent(name, description string, dateStr string, maxTickets int, price uint64) uint64 {

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

random newline

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still here

events = avl.NewTree()
}

func CreateEvent(name, description string, dateStr string, maxTickets int, price uint64) uint64 {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

seems the first three args are strings, you can shorten this

Comment on lines 75 to 78
amount := sent.AmountOf("ugnot")
if amount != int64(event.price) {
panic(ufmt.Sprintf("Please send exactly %d ugnot", event.price))
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do you think about making it possible to pay with any GRC20 token as well? Ie, the event creator could specify how many tokens would be needed for a ticket.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CreateEvent function now accepts a paymentToken parameter, and BuyTicket validates the payment by checking for that token denomination.

tickets.Mint(caller, tokenId)

event.ticketsSold++
setEvent(eventId, event)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

would be good to emit events here and in other functions, ie std.Emit

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I’ve added std.Emit calls in key places (e.g., after event creation and ticket purchase)

setEvent(eventId, event)
}

// all events and ticket info
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not godoc

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed unnecessary and not formatted comments

Comment on lines 89 to 112
func Render(path string) string {
output := "# Event Ticketing System\n\n"

events.Iterate("", "", func(key string, value interface{}) bool {
id, _ := strconv.ParseUint(key, 10, 64)
event := value.(Event)

output += ufmt.Sprintf("## Event #%d: %s\n", id, event.name)
output += ufmt.Sprintf("Description: %s\n", event.description)
output += ufmt.Sprintf("Date: %s\n", event.date.Format("2006-01-02 15:04:05"))
output += ufmt.Sprintf("Tickets: %d/%d\n", event.ticketsSold, event.maxTickets)
output += ufmt.Sprintf("Price: %d ugnot\n\n", event.price)

if event.ticketsSold < event.maxTickets {
output += ufmt.Sprintf("[Buy Ticket](/r/jjoptimist/eventix/BuyTicket?eventId=%d)\n", id)
} else {
output += "**SOLD OUT**\n"
}
output += "---\n\n"
return false
})

return output
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's use p/demo/avl/pager here

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have switched to using p/demo/avl/pager in the Render function as suggested.

Comment on lines 20 to 40
if eventId != 1 {
t.Errorf("Expected first event ID to be 1, got %d", eventId)
}

event, exists := getEvent(eventId)
if !exists {
t.Error("Event was not created")
}

if event.name != "Test Event" {
t.Errorf("Expected event name 'Test Event', got '%s'", event.name)
}

// Test invalid date format
defer func() {
if r := recover(); r == nil {
t.Error("Expected panic with invalid date format")
}
}()
CreateEvent("Test", "Test", "invalid-date", 100, 1000000)
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's use uassert & urequire. Please read up on how assert & require work in go, and check out the two packages I mentioned to see how they match

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I’ve updated the tests to use uassert and urequire for assertions,

Copy link
Contributor

@leohhhn leohhhn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, left a few more comments that need to be resolved before merging. Seeing all the conversions you're doing with the ID, just switch to seqid; it will give you sorting by creation time by default and you won't have to do conversions so often.

Also seems the fmt & tests are failing

Comment on lines 24 to 28
var (
events = avl.NewTree()
eventCounter uint64 = 0
tickets = grc721.NewBasicNFT("Event Ticket", "EVTIX")
)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Run gno fmt on the package

date time.Time
maxTickets int
price uint64 // price per ticket (in tokens)
paymentToken string // payment token symbol (e.g., ugnot or any GRC20 token)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GRC20s don't work this way; your current implementation handles only native coins. After updating the code, please add a test to validate it 🙏

}

func CreateEvent(name, description string, dateStr string, maxTickets int, price uint64) uint64 {

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still here

}
}

pg := pager.NewPager(events, 10, true).GetPage(page)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Try using pager.MustGetPageByPath()

@leohhhn leohhhn dismissed n2p5’s stale review February 21, 2025 11:14

jjoptimist fixed what was required.

@leohhhn
Copy link
Contributor

leohhhn commented Feb 26, 2025

Seems like CI is still failing

@JJOptimist
Copy link
Contributor Author

Seems like CI is still failing

Yes i fixed most of the things and got the tests running properly but i didn't merge the main for some time. Looks like i need to do changes stated here

@leohhhn
Copy link
Contributor

leohhhn commented Mar 11, 2025

@JJOptimist can you fix the CI and we can merge?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
📦 🌐 tendermint v2 Issues or PRs tm2 related 📦 🤖 gnovm Issues or PRs gnovm related 🧾 package/realm Tag used for new Realms or Packages.
Projects
Status: In Progress
Development

Successfully merging this pull request may close these issues.

5 participants