From 1e8e4a3949ed29aa9a04ae927645ea724ecf709e Mon Sep 17 00:00:00 2001 From: jhernandezb Date: Wed, 27 Mar 2024 08:32:35 -0600 Subject: [PATCH] update schema --- contracts/name-minter/schema/name-minter.json | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/contracts/name-minter/schema/name-minter.json b/contracts/name-minter/schema/name-minter.json index 886cfa02..a7b7ce15 100644 --- a/contracts/name-minter/schema/name-minter.json +++ b/contracts/name-minter/schema/name-minter.json @@ -156,16 +156,6 @@ "properties": { "address": { "type": "string" - }, - "whitelist_type": { - "anyOf": [ - { - "$ref": "#/definitions/WhitelistType" - }, - { - "type": "null" - } - ] } }, "additionalProperties": false @@ -188,16 +178,6 @@ "properties": { "address": { "type": "string" - }, - "whitelist_type": { - "anyOf": [ - { - "$ref": "#/definitions/WhitelistType" - }, - { - "type": "null" - } - ] } }, "additionalProperties": false @@ -252,13 +232,6 @@ "Uint64": { "description": "A thin wrapper around u64 that is using strings for JSON encoding/decoding, such that the full u64 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u64` to get the value out:\n\n``` # use cosmwasm_std::Uint64; let a = Uint64::from(42u64); assert_eq!(a.u64(), 42);\n\nlet b = Uint64::from(70u32); assert_eq!(b.u64(), 70); ```", "type": "string" - }, - "WhitelistType": { - "type": "string", - "enum": [ - "Updatable", - "Flatrate" - ] } } },