From b6f6a0fb52ef8da55477f96542aa99bbcc6dca54 Mon Sep 17 00:00:00 2001 From: Serkan Reis Date: Mon, 20 Feb 2023 12:01:33 +0300 Subject: [PATCH] Filter queries by Mint Rule --- components/badges/queries/query.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/components/badges/queries/query.ts b/components/badges/queries/query.ts index 46b32c3..82c4e50 100644 --- a/components/badges/queries/query.ts +++ b/components/badges/queries/query.ts @@ -16,22 +16,18 @@ export const BY_KEY_QUERY_LIST: QueryListItem[] = [ { id: 'config', name: 'Config', description: 'View current config' }, { id: 'getBadge', name: 'Query Badge', description: 'Query a badge by ID' }, { id: 'getBadges', name: 'Query Badges', description: 'Query a list of badges' }, - { id: 'getKey', name: 'Query Key', description: 'Query a key by ID to see if it's whitelisted' }, - { id: 'getKeys', name: 'Query Keys', description: 'Query the list of whitelisted keys' }, ] export const BY_KEYS_QUERY_LIST: QueryListItem[] = [ { id: 'config', name: 'Config', description: 'View current config' }, { id: 'getBadge', name: 'Query Badge', description: 'Query a badge by ID' }, { id: 'getBadges', name: 'Query Badges', description: 'Query a list of badges' }, - { id: 'getKey', name: 'Query Key', description: 'Query a key by ID to see if it's whitelisted' }, + { id: 'getKey', name: 'Query Key', description: "Query a key by ID to see if it's whitelisted" }, { id: 'getKeys', name: 'Query Keys', description: 'Query the list of whitelisted keys' }, ] export const BY_MINTER_QUERY_LIST: QueryListItem[] = [ { id: 'config', name: 'Config', description: 'View current config' }, { id: 'getBadge', name: 'Query Badge', description: 'Query a badge by ID' }, { id: 'getBadges', name: 'Query Badges', description: 'Query a list of badges' }, - { id: 'getKey', name: 'Query Key', description: 'Query a key by ID to see if it's whitelisted' }, - { id: 'getKeys', name: 'Query Keys', description: 'Query the list of whitelisted keys' }, ] export interface DispatchExecuteProps {