Temporarily disable MintRule: By_Keys & By_Minter related types

This commit is contained in:
Serkan Reis 2023-02-23 13:18:30 +03:00
parent 4f71cad38e
commit e173d6e7c3
2 changed files with 22 additions and 22 deletions

View File

@ -32,36 +32,36 @@ export const EXECUTE_LIST: ExecuteListItem[] = [
name: 'Edit Badge', name: 'Edit Badge',
description: `Edit the badge with the specified ID`, description: `Edit the badge with the specified ID`,
}, },
{ // {
id: 'add_keys', // id: 'add_keys',
name: 'Add Keys', // name: 'Add Keys',
description: `Add keys to the badge with the specified ID`, // description: `Add keys to the badge with the specified ID`,
}, // },
{ // {
id: 'purge_keys', // id: 'purge_keys',
name: 'Purge Keys', // name: 'Purge Keys',
description: `Purge keys from the badge with the specified ID`, // description: `Purge keys from the badge with the specified ID`,
}, // },
{ {
id: 'purge_owners', id: 'purge_owners',
name: 'Purge Owners', name: 'Purge Owners',
description: `Purge owners from the badge with the specified ID`, description: `Purge owners from the badge with the specified ID`,
}, },
{ // {
id: 'mint_by_minter', // id: 'mint_by_minter',
name: 'Mint by Minter', // name: 'Mint by Minter',
description: `Mint a new token by the minter with the specified ID`, // description: `Mint a new token by the minter with the specified ID`,
}, // },
{ {
id: 'mint_by_key', id: 'mint_by_key',
name: 'Mint by Key', name: 'Mint by Key',
description: `Mint a new token by the key with the specified ID`, description: `Mint a new token by the key with the specified ID`,
}, },
{ // {
id: 'mint_by_keys', // id: 'mint_by_keys',
name: 'Mint by Keys', // name: 'Mint by Keys',
description: `Mint a new token by the keys with the specified ID`, // description: `Mint a new token by the keys with the specified ID`,
}, // },
{ {
id: 'set_nft', id: 'set_nft',
name: 'Set NFT', name: 'Set NFT',

View File

@ -14,8 +14,8 @@ export const QUERY_LIST: QueryListItem[] = [
{ id: 'config', name: 'Config', description: 'View current config' }, { id: 'config', name: 'Config', description: 'View current config' },
{ id: 'getBadge', name: 'Query Badge', description: 'Query a badge by ID' }, { id: 'getBadge', name: 'Query Badge', description: 'Query a badge by ID' },
{ id: 'getBadges', name: 'Query Badges', description: 'Query a list of badges' }, { 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' }, // { id: 'getKeys', name: 'Query Keys', description: 'Query the list of whitelisted keys' },
] ]
export interface DispatchQueryProps { export interface DispatchQueryProps {