@@ -33,6 +34,15 @@ const Popup = ({ status, description, title, setShowPopup, showPopup }: PropType
{description}
+
+
Note: Transactions may take some time to appear on the explorer.
+
diff --git a/docs/site/src/utils/ctf-utils.ts b/docs/site/src/utils/ctf-utils.ts
index ad7f7a9c76e..2756e8634d6 100644
--- a/docs/site/src/utils/ctf-utils.ts
+++ b/docs/site/src/utils/ctf-utils.ts
@@ -13,6 +13,7 @@ export const handleChallengeSubmit = async ({
setCoins,
setError,
setShowPopup,
+ setDigest
}: any) => {
setLoading(true);
setError({
@@ -57,6 +58,7 @@ export const handleChallengeSubmit = async ({
{
onSuccess: ({ digest }: any) => {
client.waitForTransaction({ digest, options: { showEffects: true } }).then(() => {
+ setDigest(digest)
setError({
status: 'success',
description: 'An NFT reward was minted and transferred to your IOTA wallet address for completing the challenge.',
@@ -178,4 +180,4 @@ export const handleMintLeapFrogSubmit = async ({
});
setLoading(false);
}
-};
\ No newline at end of file
+};