Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
imhson committed Jul 8, 2024
1 parent 4cd8c73 commit 88d3165
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/(private)/components/revealForgingResult.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const RevealForgingResult = ({
</div>
<Link
target='_blank'
href={`${getConfig().AURASCAN_ENDPOINT}/tokens/token-nft/${prize.contractAddress}/${prize.tokenId}`}
href={`${getConfig().AURASCAN_ENDPOINT}/tokens/cw721/${prize.contractAddress}/${prize.tokenId}`}
className='text-xs mt-2'>
ID: <span>{prize.tokenId}</span>
</Link>
Expand Down Expand Up @@ -118,7 +118,7 @@ export const RevealForgingResult = ({
</div>
<Link
target='_blank'
href={`${getConfig().AURASCAN_ENDPOINT}/tokens/token-nft/${prize.contractAddress}/${prize.tokenId}`}
href={`${getConfig().AURASCAN_ENDPOINT}/tokens/cw721/${prize.contractAddress}/${prize.tokenId}`}
className='text-xs mt-2'>
ID: <span>{prize.tokenId}</span>
</Link>
Expand Down
4 changes: 2 additions & 2 deletions app/(private)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default function Layout({ children }: { children: ReactNode }) {
className={` hidden w-[112px] ${pathname != '/redeem' ? 'md:block' : ''}`}
/>
</div>
<div
{/* <div
className='cursor-pointer'
onClick={() => {
router.push('/burn')
Expand All @@ -105,7 +105,7 @@ export default function Layout({ children }: { children: ReactNode }) {
id='screen_Burn'
className={` hidden w-[112px] ${pathname != '/burn' ? 'md:block' : ''}`}
/>
</div>
</div> */}
<div
className='cursor-pointer'
onClick={() => {
Expand Down
2 changes: 1 addition & 1 deletion app/(private)/redeem/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export default function Page() {
</div>
<Link
target='_blank'
href={`${getConfig().AURASCAN_ENDPOINT}/tokens/token-nft/${prize.contract}/${prize.tokenId}`}
href={`${getConfig().AURASCAN_ENDPOINT}/tokens/cw721/${prize.contract}/${prize.tokenId}`}
className='text-xs mt-2'>
ID: <span>{prize.tokenId}</span>
</Link>
Expand Down
2 changes: 1 addition & 1 deletion components/modal/myChestModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export default function MyChestModal({ isOpen, onOpenChange, onClose }: any) {
} catch (error: any) {
setLoading(false)
console.log(error)
toast(error.message || 'Failed to burn gem', {
toast(error.message || 'Failed to migrate gem', {
type: 'error',
})
}
Expand Down

0 comments on commit 88d3165

Please sign in to comment.