diff --git a/schema.graphql b/schema.graphql index ec879eb..a72a324 100644 --- a/schema.graphql +++ b/schema.graphql @@ -162,6 +162,7 @@ type NFT contractAddress: String! @index category: Category! @index owner: Account! @index + ownerAddress: String! @index tokenURI: String orders: [Order!] @derivedFrom(field: "nft") # History of all orders. Should only ever be ONE open order. all others must be cancelled or sold diff --git a/src/eth/data/wearables/moonshot_2020.ts b/src/eth/data/wearables/moonshot_2020.ts index a8d79ce..e5e259b 100644 --- a/src/eth/data/wearables/moonshot_2020.ts +++ b/src/eth/data/wearables/moonshot_2020.ts @@ -200,6 +200,14 @@ export let moonshot_2020: Wearable[] = [ 'upper_body', 'legendary', ['BaseMale', 'BaseFemale'] + ), + new Wearable( + 'moonshot_2020_golden_boots_feet', + 'Golden Boots of Moonshot 2020', + 'Golden Boots of Moonshot 2020 - This boots were given to the best scorer during the first Crypto World Cup Soccer Tournament in Decentraland', + 'feet', + 'unique', + ['BaseMale', 'BaseFemale'] ) ]