Enable createBadge() on Badge Hub Dashboard
This commit is contained in:
parent
769be8d369
commit
4f71cad38e
@ -22,11 +22,11 @@ export interface ExecuteListItem {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const EXECUTE_LIST: ExecuteListItem[] = [
|
export const EXECUTE_LIST: ExecuteListItem[] = [
|
||||||
// {
|
{
|
||||||
// id: 'create_badge',
|
id: 'create_badge',
|
||||||
// name: 'Create Badge',
|
name: 'Create Badge',
|
||||||
// description: `Create a new badge with the specified mint rule and metadata`,
|
description: `Create a new badge with the specified mint rule and metadata`,
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
id: 'edit_badge',
|
id: 'edit_badge',
|
||||||
name: 'Edit Badge',
|
name: 'Edit Badge',
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
/* eslint-disable eslint-comments/disable-enable-pair */
|
/* eslint-disable eslint-comments/disable-enable-pair */
|
||||||
|
|
||||||
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
/* eslint-disable @typescript-eslint/no-unsafe-argument */
|
||||||
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
||||||
|
|
||||||
|
@ -1,4 +1,11 @@
|
|||||||
|
/* eslint-disable eslint-comments/disable-enable-pair */
|
||||||
|
/* eslint-disable @typescript-eslint/no-unnecessary-type-assertion */
|
||||||
|
|
||||||
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
||||||
|
|
||||||
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
||||||
import { toUtf8 } from '@cosmjs/encoding'
|
import { toUtf8 } from '@cosmjs/encoding'
|
||||||
|
import { Alert } from 'components/Alert'
|
||||||
import { Button } from 'components/Button'
|
import { Button } from 'components/Button'
|
||||||
import { Conditional } from 'components/Conditional'
|
import { Conditional } from 'components/Conditional'
|
||||||
import { ContractPageHeader } from 'components/ContractPageHeader'
|
import { ContractPageHeader } from 'components/ContractPageHeader'
|
||||||
@ -11,6 +18,7 @@ import { InputDateTime } from 'components/InputDateTime'
|
|||||||
import { JsonPreview } from 'components/JsonPreview'
|
import { JsonPreview } from 'components/JsonPreview'
|
||||||
import { LinkTabs } from 'components/LinkTabs'
|
import { LinkTabs } from 'components/LinkTabs'
|
||||||
import { badgeHubLinkTabs } from 'components/LinkTabs.data'
|
import { badgeHubLinkTabs } from 'components/LinkTabs.data'
|
||||||
|
import { Tooltip } from 'components/Tooltip'
|
||||||
import { TransactionHash } from 'components/TransactionHash'
|
import { TransactionHash } from 'components/TransactionHash'
|
||||||
import { useContracts } from 'contexts/contracts'
|
import { useContracts } from 'contexts/contracts'
|
||||||
import { useWallet } from 'contexts/wallet'
|
import { useWallet } from 'contexts/wallet'
|
||||||
@ -30,10 +38,12 @@ import { toast } from 'react-hot-toast'
|
|||||||
import { FaArrowRight, FaCopy, FaSave } from 'react-icons/fa'
|
import { FaArrowRight, FaCopy, FaSave } from 'react-icons/fa'
|
||||||
import { useMutation } from 'react-query'
|
import { useMutation } from 'react-query'
|
||||||
import * as secp256k1 from 'secp256k1'
|
import * as secp256k1 from 'secp256k1'
|
||||||
|
import { copy } from 'utils/clipboard'
|
||||||
import { NETWORK } from 'utils/constants'
|
import { NETWORK } from 'utils/constants'
|
||||||
import { withMetadata } from 'utils/layout'
|
import { withMetadata } from 'utils/layout'
|
||||||
import { links } from 'utils/links'
|
import { links } from 'utils/links'
|
||||||
import { resolveAddress } from 'utils/resolveAddress'
|
import { resolveAddress } from 'utils/resolveAddress'
|
||||||
|
import { truncateMiddle } from 'utils/text'
|
||||||
|
|
||||||
import { TextInput } from '../../../components/forms/FormInput'
|
import { TextInput } from '../../../components/forms/FormInput'
|
||||||
import { MetadataAttributes } from '../../../components/forms/MetadataAttributes'
|
import { MetadataAttributes } from '../../../components/forms/MetadataAttributes'
|
||||||
@ -48,7 +58,7 @@ const BadgeHubExecutePage: NextPage = () => {
|
|||||||
|
|
||||||
const [timestamp, setTimestamp] = useState<Date | undefined>(undefined)
|
const [timestamp, setTimestamp] = useState<Date | undefined>(undefined)
|
||||||
const [transferrable, setTransferrable] = useState<boolean>(false)
|
const [transferrable, setTransferrable] = useState<boolean>(false)
|
||||||
const [createdBadgeId, setCreatedBadgeId] = useState<string | undefined>(undefined)
|
const [createdBadgeId, setCreatedBadgeId] = useState<string | null>(null)
|
||||||
const [createdBadgeKey, setCreatedBadgeKey] = useState<string | undefined>(undefined)
|
const [createdBadgeKey, setCreatedBadgeKey] = useState<string | undefined>(undefined)
|
||||||
const [resolvedOwnerAddress, setResolvedOwnerAddress] = useState<string>('')
|
const [resolvedOwnerAddress, setResolvedOwnerAddress] = useState<string>('')
|
||||||
const [editFee, setEditFee] = useState<number | undefined>(undefined)
|
const [editFee, setEditFee] = useState<number | undefined>(undefined)
|
||||||
@ -318,10 +328,11 @@ const BadgeHubExecutePage: NextPage = () => {
|
|||||||
const txHash = await toast.promise(dispatchExecute(payload), {
|
const txHash = await toast.promise(dispatchExecute(payload), {
|
||||||
error: `${type.charAt(0).toUpperCase() + type.slice(1)} execute failed!`,
|
error: `${type.charAt(0).toUpperCase() + type.slice(1)} execute failed!`,
|
||||||
loading: 'Executing message...',
|
loading: 'Executing message...',
|
||||||
success: (tx) => `Transaction ${tx} success!`,
|
success: (tx) => `Transaction ${tx.split(':')[0]} success!`,
|
||||||
})
|
})
|
||||||
if (txHash) {
|
if (txHash) {
|
||||||
setLastTx(txHash)
|
setLastTx(txHash.split(':')[0])
|
||||||
|
setCreatedBadgeId(txHash.split(':')[1])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -345,6 +356,7 @@ const BadgeHubExecutePage: NextPage = () => {
|
|||||||
const publicKey = Buffer.from(secp256k1.publicKeyCreate(privKey)).toString('hex')
|
const publicKey = Buffer.from(secp256k1.publicKeyCreate(privKey)).toString('hex')
|
||||||
|
|
||||||
keyState.onChange(publicKey)
|
keyState.onChange(publicKey)
|
||||||
|
setCreatedBadgeId(null)
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleDownloadQr = async () => {
|
const handleDownloadQr = async () => {
|
||||||
@ -505,6 +517,7 @@ const BadgeHubExecutePage: NextPage = () => {
|
|||||||
<LinkTabs activeIndex={2} data={badgeHubLinkTabs} />
|
<LinkTabs activeIndex={2} data={badgeHubLinkTabs} />
|
||||||
|
|
||||||
{showBadgeField && createdBadgeId && createdBadgeKey && (
|
{showBadgeField && createdBadgeId && createdBadgeKey && (
|
||||||
|
<div className="flex flex-row">
|
||||||
<div className="ml-4">
|
<div className="ml-4">
|
||||||
<div className="w-[384px] h-[384px]" ref={qrRef}>
|
<div className="w-[384px] h-[384px]" ref={qrRef}>
|
||||||
<QRCodeCanvas
|
<QRCodeCanvas
|
||||||
@ -534,6 +547,31 @@ const BadgeHubExecutePage: NextPage = () => {
|
|||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="ml-4">
|
||||||
|
<Alert className="text-white" type="info">
|
||||||
|
<div>
|
||||||
|
<span className="font-bold text-white">Badge ID: </span>
|
||||||
|
<span className="text-white/80">{createdBadgeId} </span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<span className="font-bold text-white">Private Key:</span>
|
||||||
|
<Tooltip label="Click to copy the private key">
|
||||||
|
<button
|
||||||
|
className="group flex space-x-2 font-mono text-base text-white/80 hover:underline"
|
||||||
|
onClick={() => void copy(createdBadgeKey as string)}
|
||||||
|
type="button"
|
||||||
|
>
|
||||||
|
<span>{truncateMiddle(createdBadgeKey ? createdBadgeKey : '', 32)}</span>
|
||||||
|
<FaCopy className="opacity-50 group-hover:opacity-100" />
|
||||||
|
</button>
|
||||||
|
</Tooltip>
|
||||||
|
</Alert>
|
||||||
|
<br />
|
||||||
|
<Alert className="text-white" type="warning">
|
||||||
|
Please make sure to save the Badge ID and the Private Key.
|
||||||
|
</Alert>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
)}
|
)}
|
||||||
<form className="grid grid-cols-2 p-4 space-x-8" onSubmit={mutate}>
|
<form className="grid grid-cols-2 p-4 space-x-8" onSubmit={mutate}>
|
||||||
<div className="space-y-8">
|
<div className="space-y-8">
|
||||||
|
Loading…
Reference in New Issue
Block a user