Skip to content

Instantly share code, notes, and snippets.

View dayweek's full-sized avatar

David Hrachovy dayweek

View GitHub Profile
@dayweek
dayweek / metadata.json
Created February 10, 2024 16:08
Eigenlayer metadata
{
"name": "primehammer",
"website": "https://www.primehammer.com/",
"description": "Web3 Engineers",
"logo": "https://blog.primehammer.com/wp-content/uploads/2023/08/cropped-Frame-64-1.png",
"twitter": "https://twitter.com/dayweek_cz"
}
class Item < ApplicationRecord
belongs_to :item_set, optional: true
end
class ItemSet < ApplicationRecord
has_many :items
has_many :item_set_bonuses, class_name: ItemSetBonus
end
class ItemSetBonus < ApplicationRecord