diff --git a/contracts/minters/open-edition-minter-merkle-wl/schema/execute_msg.json b/contracts/minters/open-edition-minter-merkle-wl/schema/execute_msg.json index 76b890eb3..1bbec3afc 100644 --- a/contracts/minters/open-edition-minter-merkle-wl/schema/execute_msg.json +++ b/contracts/minters/open-edition-minter-merkle-wl/schema/execute_msg.json @@ -10,6 +10,25 @@ "properties": { "mint": { "type": "object", + "required": [ + "proof_hashes" + ], + "properties": { + "allocation": { + "type": [ + "integer", + "null" + ], + "format": "uint32", + "minimum": 0.0 + }, + "proof_hashes": { + "type": "array", + "items": { + "type": "string" + } + } + }, "additionalProperties": false } },