From 007c0127ad655026be9bbbafe179f076aa714282 Mon Sep 17 00:00:00 2001 From: Serkan Reis Date: Mon, 13 Feb 2023 19:58:45 +0300 Subject: [PATCH] Update upload splash --- components/BadgeLoadingModal.tsx | 11 +++++++++++ contracts/badgeHub/contract.ts | 2 +- public/icon.svg | 1 + 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 components/BadgeLoadingModal.tsx create mode 100644 public/icon.svg diff --git a/components/BadgeLoadingModal.tsx b/components/BadgeLoadingModal.tsx new file mode 100644 index 0000000..6c295b7 --- /dev/null +++ b/components/BadgeLoadingModal.tsx @@ -0,0 +1,11 @@ +export const BadgeLoadingModal = () => { + return ( +
+ Pixel Logo +

Uploading the image for badge creation, please wait...

+
+ ) +} diff --git a/contracts/badgeHub/contract.ts b/contracts/badgeHub/contract.ts index 91dd77b..7d5a597 100644 --- a/contracts/badgeHub/contract.ts +++ b/contracts/badgeHub/contract.ts @@ -269,7 +269,7 @@ export const badgeHub = (client: SigningCosmWasmClient, txSigner: string): Badge contractAddress, toUtf8(Buffer.from(Buffer.from('fee_rate').toString('hex'), 'hex').toString()), ) - + console.log('Fee Rate Raw: ', feeRateRaw) const feeRate = JSON.parse(new TextDecoder().decode(feeRateRaw as Uint8Array)) console.log('Fee Rate:', feeRate) diff --git a/public/icon.svg b/public/icon.svg new file mode 100644 index 0000000..d09b925 --- /dev/null +++ b/public/icon.svg @@ -0,0 +1 @@ + \ No newline at end of file